Tagged Questions
5
votes
1answer
462 views
Ensure a user-defined path is safe in PHP
I am implementing a simple directory listing script in PHP.
I want to ensure that the passed path is safe before opening directory handles and echoing the results willy-nilly.
$f = $_GET["f"];
if(! ...
4
votes
2answers
174 views
Does my code prevent directory traversal?
Is the following code snippet from a Python WSGI app safe from directory traversal? It reads a file name passed as parameter and returns the named file.
file_name = request.path_params["file"]
file = ...
2
votes
7answers
2k views
Using directory traversal attack to execute commands
Is there a way to execute commands using directory traversal attacks?
For instance, I access a server's etc/passwd file like this
http://server.com/..%01/..%01/..%01//etc/passwd
Is there a way to ...
1
vote
4answers
605 views
Preventing Directory Traversal in PHP but allowing paths
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 ...