!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/share/texmf/scripts/uniqleaf/   drwxr-xr-x
Free 3.57 GB of 27.03 GB (13.2%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     uniqleaf.pl (1.29 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
eval '(exit $?0)' && eval 'exec perl -S $0 ${1+"$@"}' && eval 'exec perl -S $0 $argv:q'
  if 0;
use strict;

# Check filesystem tree (or union of several trees) for unique
# leaf names; useful for spotting  ambiguities that path-searching
# programs could trip over.

# For each non-unique leaf name found, it prints out "ls" and "md5"
# information for each candidate file.

# Martyn Johnson      maj@cl.cam.ac.uk
# University of Cambridge Computer Lab
# Cambridge UK

my $mdprog = "md5sum"; # Set to command name of "md5" program, or
                 # null string if you don't have it.

my $sep = "\000";
my %map;

foreach my $dir (@ARGV) {
    open (FIND, "find $dir -type f -print |") || die ("open failed: $!");

    while (<FIND>) {
        chop;
        (my $leaf = $_) =~ s-.*/--;
        $map{$leaf} .= "$_$sep";
    }

    close FIND;
}

my $md = "";

foreach my $leaf (sort keys %map) {
    my $files = $map{$leaf};
    chop $files;
    my @paths = split($sep, $files);
    if ($#paths > 0) {
        for (my $i=0; $i<=$#paths; $i++) {
            my $path = $paths[$i];
            my $info = `ls -il "$path"`;
            chop $info;
            $info =~ s/\s+/ /g;
            if ($mdprog) {
                    $md = `$mdprog "$path"`;
                chop $md;
                $md =~ s/^.*= / /;
            }
            $info =~ s/ ([^ ]+$)/$md $1/;
            print ("$info\n");
        }
        print ("\n");                                                
    }
}


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0042 ]--