The directory-traversal tag has no wiki summary.
0
votes
1answer
35 views
Directory traversal attacks
I'm trying to understand directory traversal attacks from http://www.acunetix.com/websitesecurity/directory-traversal/
I've understood the Attack via Web Application Code:-
e.g. ...
0
votes
5answers
90 views
How to find folder below given section of a path?
Given a path and a certain section, how can I find the name of the folder immediately below that section?
This is hard to explain, let me give some examples. Suppose I am looking for the name of the ...
0
votes
1answer
56 views
Get the filename from bash script recursively using find
I am trying retrieve the filename from the find command recursively. This command prints all the filenames with full path
> for f in $(find -name '*.png'); do echo "$f";done
> ./x.png
...
1
vote
2answers
134 views
Is os.walk() missing symlinks to directories?
I have a directory containing some files, some directories, some symlinks to files and some symlinks to directories.
When I do os.walk() with followlinks=false in the directory, I get the files and ...
0
votes
1answer
133 views
PHP: Search Directory Tree for File and Return File Path
Consider this workflow:
User makes a request to website.com/lolmyblogpost
My .htacces is all like...
RewriteCond %{REQUEST_URI} !=/index.php
RewriteRule .* /index.php
Where in index.php im going ...
3
votes
2answers
199 views
Is there some directory walker in Haskell?
Is there some recursive directory walker in Haskell so I could write something like
listing <- walkDir "/tmp"
I would not like to write my own. I can install some dependency from cabal but I ...
3
votes
1answer
116 views
directory traverse c
I'm trying to traverse a directory and check for duplicate files.
void findDuplicates(){
char *dot[] = {".", 0};
FTS *ftsp, *temp_ftsp;
FTSENT *entry, *temp_entry;
int fts_options = ...
0
votes
2answers
65 views
Entering subdirectories (with spaces) and merge the files to another directory
I want to do something special in bash. I have found partial solutions with for loops and find, but I prefer to make a script to make a more complex job.
I have a complex directory structure as ...
1
vote
2answers
259 views
How to recursively scan directories in Android
How can I recursively scan directories in Android and display file name(s)? I'm trying to scan, but it's slow (force close or wait). I'm using the FileWalker class given in a separate answer to this ...
1
vote
2answers
120 views
traversing directories with php?
I have a path to a folder (e.g. /var/www/tester/assets/themes/default/css/).
a user can provide a relative path to the folder, so for example. layout/ie7.css would give the path of ...
1
vote
1answer
433 views
Differences between webroot and document root when preventing directory traversing
I've been told it's good practice to keep as much of my PHP files outside of public_html whenever possible.
It's been suggested to me to use define magical constants to refer to files outside of ...
2
votes
4answers
2k views
How to display all images of a directory in javascript?
I want to display all images from a directory dynamically with the help of javascript.
How can I do this?
0
votes
2answers
288 views
Simple PHP Vulnerability Test
Basically, I want to create a site to show people how to prevent PHP vulnerabilities by simulating them. However, I can not get them to work myself.
I want to see if a variable equals a valid page (I ...
2
votes
2answers
523 views
PHP: normalize path of not existing directories to prevent directory traversals?
I would like to normalize a path from an external resource to prevent directory traversal attacks. I know about the realpath() function, but sadly this function returns only the path of existing ...
0
votes
4answers
2k views
How to traverse all the files in a directory; if it has subdirectories, I want to traverse files in subdirectories too
opendir(DIR,"$pwd") or die "Cannot open $pwd\n";
my @files = readdir(DIR);
closedir(DIR);
foreach my $file (@files) {
next if ($file !~ /\.txt$/i);
my $mtime = ...
1
vote
2answers
271 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 {
...
5
votes
2answers
332 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 ...
5
votes
2answers
654 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 = ...
0
votes
1answer
311 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
4answers
513 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
5answers
3k 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 ...
0
votes
1answer
2k 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 ...
1
vote
2answers
350 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 ...
2
votes
4answers
3k 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 ...
7
votes
4answers
8k 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?
2
votes
7answers
5k 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 ...
7
votes
1answer
1k 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
6answers
2k 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 ...
5
votes
7answers
3k 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
2k 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
3answers
232 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?
32
votes
10answers
35k 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 ...

