Re: Getting forward slashes and hyphins past the taint check

2010-03-10 Thread Robert Roggenbuck
Move the hyphen to the end (only): if ( $Cookie_path =~ /^([...@\w\/.-]+)$/ ) { Greetings Robert Adam Jimerson schrieb: In one of my scripts that I am developing I have a field where the needs to supply which my include forward slashes and hyphens. I understand the inherent security risk o

Getting forward slashes and hyphins past the taint check

2010-02-26 Thread Adam Jimerson
In one of my scripts that I am developing I have a field where the needs to supply which my include forward slashes and hyphens. I understand the inherent security risk of allowing such things and so does the taint check... I'm sure the answer to this is really simple and I'm just over lookin