!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/libexec/webmin/smf/   drwxr-xr-x
Free 5.17 GB of 27.03 GB (19.13%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     path_chooser.cgi (3.27 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# chooser.cgi
# Outputs HTML for a frame-based path chooser

require './smf-lib.pl';

&init_config();
&ReadParse();

if (defined($in{'path'})) {
    $path = $in{'path'};
    # +'s get converted to spaces, convert back
    $path =~ s/\s/+/g;
    if ($path =~ /^(\/.*)$/) {
        # path entered is valid
        $path=$1;
        }
} else {
    $path="/";
    }
$add = int($in{'add'});

$frame = $in{'frame'};
if ($frame eq "" ) {
    $frame = 0;
}

if ($in{'frame'} == 0) {
    # base frame
    &PrintHeader();
    print "<title>$text{'path_chooser_title'}</title>\n";
    print "<frameset rows='*,50'>\n";
    print "<frame marginwidth=10 marginheight=10 name=topframe ",
        "src=\"path_chooser.cgi?frame=1&path=$path&add=$add\">\n";
    print "<frame marginwidth=10 marginheight=10 name=bottomframe ",
        "src=\"path_chooser.cgi?frame=2&add=$add&path=$path\"",
        "scrolling=no>\n";
    print "</frameset>\n";
    }
elsif ($in{'frame'} == 1) {
    # List of svcs
    &header();
    print <<EOF;
<script>
function pathclick(path, expand)
{
top.bottomframe.document.forms[0].path.value = path;
if (expand == 1) {
    location ="path_chooser.cgi?frame=1&add=$add&path="+path;
    }
}

</script>
EOF
    print "<b>", &text('path_chooser_path', $path),"</b>\n";
    print "<table>\n";
    # get file/dir list
    if (opendir(CURRDIR, $path)) {
        # remove extra trailing "/" if there.
        $fixed_filepath = $path;
        $fixed_filepath =~ s/(.*)\/$/$1/;
        foreach $f (readdir(CURRDIR)) {
            if ($f eq ".") {
                # skip
            } elsif ($f eq "..") {
                $uplevel = "$fixed_filepath";
                if ($uplevel =~ /^((\/[^\/]*)*)\/[^\/]*$/) {
                    $uplevel = $1;
                    }
                if ($uplevel eq "") {
                    $uplevel = "/";
                    }
                $uplevel = &urlize($uplevel);
                push(@pathlist,
"<td><a href='javascript:pathclick(\"$uplevel\",1)'><img border=0 width=30 height=30 src=\"images/uplevel.gif\"></a></td><td><a href='javascript:pathclick(\"$uplevel\",1)'>..</a></td>");
            } else {
                $expand = 0;
                $img = "images/file.gif";
                # is this a file or a dir?
                if (opendir(DISCARD, "$fixed_filepath/$f")) {
                    close(DISCARD);
                    $expand = 1;
                    $img = "images/dir.gif";
                    }
                $newpath = &urlize("$fixed_filepath/$f");
                push(@pathlist,
"<td><a href='javascript:pathclick(\"$newpath\",$expand)'><img border=0 width=30 height=30 src=$img></a></td><td><a href='javascript:pathclick(\"$newpath\",$expand)'>$f</a></td>");
                }
            }
        closedir(CURRDIR);
        }
    foreach $p (@pathlist) {
        print "<tr>\n";
        print "$p";
        print "</tr>\n";
        }
    print "</table>\n";
    &footer();
    }
elsif ($in{'frame'} == 2) {
    # Current path and OK/cancel buttons
    &header();
    print <<EOF;
<script>
function pathchosen()
{
if ($add == 0) {
    top.opener.ifield.value =
     "file://localhost"+document.forms[0].path.value;
    }
else {
    if (top.opener.ifield.value != "") {
        top.opener.ifield.value += " ";
        }
    top.opener.ifield.value +=
     "file://localhost"+document.forms[0].path.value;
    }
top.close();
}
</script>
EOF
    print "<table width=100%><tr><td>\n";
    print "<form onSubmit='pathchosen(); return false'>\n";
    print
     "<input name=path size=45 value=\"\">\n";
    print
     "<input type=\"submit\" value=\"$text{'path_chooser_ok'}\">\n";
    print "</form>\n";
    print "</td><td>\n";
    print "<form>";
    print
"<input type=\"button\" onClick='top.close()' value=\"$text{'path_chooser_cancel'}\">";
    print "</form>";
    print "</td></tr></table></form>\n";
    &footer();
    }

:: 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.0036 ]--