I am using "clean" URLs like this:
http://localhost/controller/action/param
I access the parameters with a custom function like this my_get(1), my_get(2), etc...
However there are times where I think I need to combine them with query strings. For example: If I need parameter values containing paths with several slashes like:
http://localhost/controller/action/param?mypath=foo/bar/qux.jpg
I do that because it would be a little harder to implement if done with clean URL.
Now my question is, in combining clean URL and with query string, I only intend to allow this character class:
[.&=a-z0-9\/_-]
I was wondering would there be any security issue with it? Should I disallow certain characters?
$f = realpath($_GET['file']); unlink($f);instead of plainunlink($_GET['file']);? How would you check for "hacking attempt" in the example above? – IMB Oct 26 '11 at 19:44realpathis a good start, but you'll also have to validate if the real path is somewhere safe – a subdirectory of wherever you store your data files. – millimoose Oct 26 '11 at 19:46