Tagged Questions
The directory-traversal tag has no wiki summary.
21
votes
10answers
17k views
How to rename all folders and files to lowercase on Linux?
I have to rename a complete folder tree recursively so that no uppercase letter appears anywhere (it's C++ sourcecode, but that shouldn't matter). Bonus points for ignoring CVS and SVN control ...
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
81 views
How to loop through files and rename them in Python
I have a directory of music that has album folders as well as individual songs on each level. How can I traverse all of these files that also are encoded in different formats(mp3, wav etc)? In ...
4
votes
2answers
170 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 = ...
4
votes
7answers
2k views
What are all the ways to traverse directory trees?
How do you traverse a directory tree in your favorite language?
What do you need to know to traverse a directory tree in different operating systems? On different filesystems?
What's your favorite ...
4
votes
4answers
1k views
Why can't I remove this empty directory in Perl?
I am converting a linux script from http://www.perlmonks.org/index.pl?node_id=217166 specifically this:
#!/usr/bin/perl -w
use strict;
use Getopt::Std;
use File::Find;
@ARGV > 0 and getopts('a:', ...
3
votes
4answers
4k views
Copy directory using Qt
I want to copy a directory from one drive to another drive. My selected directory contains many sub directories and files.
How can I implement the same using Qt?
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 ...
3
votes
3answers
148 views
Code to get *.aspx in a website
Is there a method to get all of the .aspx files in my website? Maybe iterate through the site's file structure and add to an array?
2
votes
4answers
215 views
GNU find: Search in current directory first
how can I tell find to look in the current folder first and then continue search in subfolders? I have the following:
$ find . -iname '.note'
folder/1/.note
folder/2/.note
folder/3/.note
folder/.note
...
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
2answers
68 views
Premature Exit from Perl File::Find
In perl we usually do a recursive directory traversal using File::Find and we often use a code similar to below to find certain files based on a pattern.
find(\&filter, $somepath);
sub filter {
...
1
vote
4answers
601 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 ...
1
vote
2answers
191 views
JFile Chooser decide if Directory or File is selected
My main goal:
if the user selects a directory it scans the whole folder for mp3 files and returns them. If he selects some mp3 files it returns them.
To return the selected files was an easy one but ...
1
vote
3answers
1k views
Reasonably faster way to traverse a directory tree in Python?
Assuming that the given directory tree is of reasonable size: say an open source project like Twisted or Python, what is the fastest way to traverse and iterate over the absolute path of all ...
0
votes
1answer
197 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 ...
0
votes
1answer
673 views
Python os.walk + follow symlinks
How do I get this piece to follow symlinks in python 2.6?
def load_recursive(self, path):
for subdir, dirs, files in os.walk(path):
for file in files:
if ...
-3
votes
0answers
34 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 ...