Tagged Questions

3
votes
1answer
198 views

How do I use File::Find::Rule in taint mode?

I am trying to get a list of subdirectories in a given directory using something like the following: #!/usr/bin/perl -wT use strict; use warnings; use File::Find::Rule; use Data::Dumper; my …
3
votes
1answer
613 views

Recursive directory listing using Ruby with Chinese characters in file names

I would like to generate a list of files within a directory. Some of the filenames contain Chinese characters. eg: [试验].Test.txt I am using the following code: require 'find' dirs = ["TestDir"] for …
1
vote
2answers
43 views

How to stop Apache from listing the contents of my user directories

I recently ran some penetration testing software on my web site and was surprised for it to report that one of my directory listings was publicly accessible. It is the directory of the root user …
1
vote
4answers
373 views

Directory Walker for Python

I am currently using the directory walker from Here import os class DirectoryWalker: # a forward iterator that traverses a directory tree def __init__(self, directory): self.stack = [directory] …
1
vote
3answers
148 views

Download files from a directory listing.

Is it possible to download all the files from a directory listing? Eg., the following link leads to a listing. http://www.arthika.net/1234TB/new/Kuruvi/ Please point me to some related API's to …
0
votes
5answers
64 views

Getting a list of folders in a directory

How do I get a list of the folders that exist in a certain directory with ruby? Dir.entries() looks close but I don't know how to limit to folders only.
0
votes
2answers
59 views

listing a folder content : how to prevent user from going above the authorized directory?

Hi, i'm working on a script to allow users to browse a given directory, which is not the directory this file is sitting in, but set in a variable. define('FOLDER', '../_files/'); Now, the rendred …
0
votes
6answers
632 views

Recursively List all directories and files

Hi I would like to recieve the following output - Suppose the directory structure on the file system is like this: -dir1 -dir2 -file1 -file2 -dir3 -file3 …
0
votes
2answers
460 views

Simple script to replace Apache’s mod_autoindex with a user-friendly directory listing

The Apache module mod_autoindex generates "directory indexes" that show users a crude hyperlinked list of the files and directories inside a directory (when there is no index.html or other …
0
votes
4answers
2k views

Get the contents of a server-side directory in SAP ABAP

I need to get a listing of a server-side directory inside SAP. How do I achieve this in ABAP? Are there any built-in SAP functions I can call? Ideally I want a function which I can pass a path as …