Hi,
Taint checking has got me stumped.
I'm using CGI to bring in a variable amount of data from
a Textarea in a form.

What's the best way to untaint a bunch of words?
They may or may not span multiple lines.

Everything I've tried will give me $1 being just the
first word.
For example:
if ($comment =~ /([a-zA-Z0-9\.,;:]*)/m){$comment = $1}

How do you get $1 to capture everything that would be
in normal comments, with resorting to (.*)  :-)




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to