Tagged Questions

5
votes
1answer
458 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(! ...
3
votes
6answers
1k views

Preventing directory traversal with web-facing application - are regular expressions bullet-proof?

I am in a situation where I need to allow a user to download a file dynamically determined from the URL. Before the download begins, I need to do some authentication, so the download has to run ...
1
vote
4answers
598 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 ...
0
votes
1answer
195 views

How can I make this function dynamic based on directory traversal of an explicitly referenced, known folder?

The script below is designed to take each folder defined as "WIDGET" and iterate over its files, loading their contents into the database as a widget object. It works fine, however, as you can see ...
-3
votes
0answers
33 views

directory traversing of a live site using php

How we can perform directory traversal of a live website using PHP? all those scandir() and curl scripts i tried are working for my local directory structure. PS: I've just started using PHP and have ...