http://www.perlmonks.org?node_id=203567


in reply to Re: Re: Quotes In CGI
in thread Quotes In CGI

You are correct, although your example would not work as you intended, something along the lines of the following would:
script.cgi?x=' . system "any valid OS command here" . '
the eval of which would look like this:
$x = '' . system "any valid OS command here" . '';
In this particular case, the UnTaint would not find any "naughty" symbols we associate with usual system cracking attempts. My focus, however was to address the cause of the poster's immediate problem. The references to the other links and the warning I think were sufficient. In his CGI Course, Ovid addresses these and other security issues.

--Jim