I have a base path /whatever/foo/
and
$_GET['path'] should be relative to it.
However how do I accomplish this (reading the directory), without allowing directory traversal?
eg.
/\.\.|\.\./
Will not filter properly.
|
I have a base path /whatever/foo/ and
However how do I accomplish this (reading the directory), without allowing directory traversal? eg.
Will not filter properly. |
||||
|
|
|
Search for "forbidden" occurrences, ie:
If you want to serve only files inside Warning: when validating input, check both Another warning: you SHOULD use |
|||||||||||||
|
|
Well, one option would be to compare the real paths:
Basically, |
|||||||||
|
|
It is not sufficient to check for patterns like ../ or the likes. Take "../" for instance which URI encodes to "%2e%2e%2f". If your pattern check happens before a decode, you would miss this traversal attempt. There are some other tricks hackers can do to circumvent a pattern checker especially when using encoded strings. I've had the most success stopping these by canonicalizing any path string to its absolute path using something like realpath() as ircmaxwell suggests. Only then do I begin checking for traversal attacks by matching them against a base path I've predefined. |
|||
|
|
|
@ircmaxell the answer wasn't fully correct. I've seen that solution in several snippets but it has a bug which is related to the output of realpath(). The function realpath() removes the trailing directory separator, so imagine two contiguos directories such as: /foo/bar/baz/ /foo/bar/baz_baz/ As realpath() would remove the last directory separator you method will return "good path" if $_GET['path'] was equal to "../baz_baz" as it would be something like
Maybe:
|
|||
|
|
|
I assume you mean without allowing users to traverse the directory yes? If you are trying to stop your own PHP from traversing the directory you should just make the php work properly in the first place. What you need to stop users is a modified .htaccess file...
(This all assumes you are talking about users) |
|||
|
|