#!/usr/bin/perl # RedFox! Productions: DirList # All coding done by one Ranna Fox use strict; use CGI qw( :standard ); my $file = param('d') || "prefix/"; if ($file =~ /^\//) { print "Ahem...you may not list files with absolute paths. Especially not that absolute path\n"; $r->print_end; exit; } elsif ($file =~ /\.\./) { print "'Scuse me, I won't list directories with .. in their path. Better fix that.\n"; $r->print_end; exit; } elsif (not $file =~ /^prefix\//) { print "See, the way things work is that if you're gonna list a directory, you gotta put a 'prefix/' before it, which means it has to be in my directory.\n"; $r->print_end; exit; } my $filen; ($filen = $file) =~ s{^prefix/}{/path/to/home/dir/}; if (not -d $filen) { print "That...uh...doesn't appear to exist... o.O\n"; $r->print_end; exit; } &parse_dir($filen, $file); sub parse_dir { my $dir = $_[0]; my $req = $_[1]; opendir(PARSEDIR, "$dir") || die "Couldn't open directory $dir: $!\n"; my $currdir; $dir =~ s/(.*)\/$/$1/; ($currdir = $dir) =~ s{.*/([^/]*)$}{$1}; print "
  • $currdir/\n
      \n"; foreach my $file (sort(readdir(PARSEDIR))) { my $fullname = $dir . "/" . $file; next if ($file =~ /^\..*/ || ! -r $fullname); if (-d $fullname) { $req = $req . "/" . $file; &parse_dir($fullname, $req); } else { my $dirn; ($dirn = $dir) =~ s{/path/home/to/dir}{}; ($filen = $file) =~ s/ /\%20/g; print "
    • [Bare link]"; if (-T $fullname) { # showtext.php is basically an fpassthru() enclosed in
       tags.
              print "[Online]"; 
            } else {
              print "[Download]";
            }
            print " - $file
    • \n"; } } closedir(PARSEDIR); print "
    \n"; }