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


Viewing file:     index.cgi (5.61 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display all Webmin modules visible to the current user

BEGIN { push(@INC, "."); };
use WebminCore;

&init_config();
&ReadParse();
$hostname = &get_display_hostname();
$ver = &get_webmin_version();
&get_miniserv_config(\%miniserv);
if ($gconfig{'real_os_type'}) {
    if ($gconfig{'os_version'} eq "*") {
        $ostr = $gconfig{'real_os_type'};
        }
    else {
        $ostr = "$gconfig{'real_os_type'} $gconfig{'real_os_version'}";
        }
    }
else {
    $ostr = "$gconfig{'os_type'} $gconfig{'os_version'}";
    }
%access = &get_module_acl();

# Build a list of all modules
@modules = &get_visible_module_infos();

if (!defined($in{'cat'})) {
    # Maybe redirect to some module after login
    local $goto = &get_goto_module(\@modules);
    if ($goto) {
        &redirect($goto->{'dir'}.'/');
        exit;
        }
    }

$gconfig{'sysinfo'} = 0 if ($gconfig{'sysinfo'} == 1);

if ($gconfig{'texttitles'}) {
    @args = ( $text{'main_title2'}, undef );
    }
else {
    @args = ( $gconfig{'nohostname'} ? $text{'main_title2'} :
            &text('main_title', $ver, $hostname, $ostr),
          "images/webmin-blue.png" );
    if ($gconfig{'showlogin'}) {
        $args[0] = $remote_user." : ".$args[0];
        }
    }
&header(@args, undef, undef, 1, 1,
    $tconfig{'brand'} ?
    "<a href=$tconfig{'brand_url'}>$tconfig{'brand'}</a>" :
    $gconfig{'brand'} ?
    "<a href=$gconfig{'brand_url'}>$gconfig{'brand'}</a>" :
    "<a href=http://www.webmin.com/>$text{'main_homepage'}</a>"
    );
print "<center><font size=+1>",
    &text('main_version', $ver, $hostname, $ostr),"</font></center>\n"
    if (!$gconfig{'nohostname'});
print "<hr id='header_hr'><p>\n";

print $text{'main_header'};

if (!@modules) {
    # use has no modules!
    print "<p class='main_none'><b>$text{'main_none'}</b><p>\n";
    }
elsif ($gconfig{"notabs_${base_remote_user}"} == 2 ||
    $gconfig{"notabs_${base_remote_user}"} == 0 && $gconfig{'notabs'}) {
    # Generate main menu with all modules on one page
    print "<center><table id='mods' cellpadding=5 cellspacing=0 width=100%>\n";
    $pos = 0;
    $cols = $gconfig{'nocols'} ? $gconfig{'nocols'} : 4;
    $per = 100.0 / $cols;
    foreach $m (@modules) {
        if ($pos % $cols == 0) { print "<tr $cb>\n"; }
        print "<td valign=top align=center width=$per\%>\n";
        local $idx = $m->{'index_link'};
        print "<table border><tr><td><a href=$gconfig{'webprefix'}/$m->{'dir'}/$idx>",
              "<img src=$m->{'dir'}/images/icon.gif border=0 ",
              "width=48 height=48></a></td></tr></table>\n";
        print "<a href=$gconfig{'webprefix'}/$m->{'dir'}/$idx>$m->{'desc'}</a></td>\n";
        if ($pos % $cols == $cols - 1) { print "</tr>\n"; }
        $pos++;
        }
    print "</table></center><p><hr id='mods_hr'>\n";
    }
else {
    # Display under categorised tabs
    &ReadParse();
    %cats = &list_categories(\@modules);
    @cats = sort { $b cmp $a } keys %cats;
    $cats = @cats;
    $per = $cats ? 100.0 / $cats : 100;
    if (!defined($in{'cat'})) {
        # Use default category
        if (defined($gconfig{'deftab'}) &&
            &indexof($gconfig{'deftab'}, @cats) >= 0) {
            $in{'cat'} = $gconfig{'deftab'};
            }
        else {
            $in{'cat'} = $cats[0];
            }
        }
    elsif (!$cats{$in{'cat'}}) {
        $in{'cat'} = "";
        }
    print "<table id='cattabs' border=0 cellpadding=0 cellspacing=0 height=20><tr>\n";
    $usercol = defined($gconfig{'cs_header'}) ||
           defined($gconfig{'cs_table'}) ||
           defined($gconfig{'cs_page'});
    foreach $c (@cats) {
        $t = $cats{$c};
        if ($in{'cat'} eq $c) {
            print "<td class='usercoll' valign=top $cb>", $usercol ? "<br>" :
              "<img src=images/lc2.gif alt=\"\">","</td>\n";
            print "<td class='usercolc' id='selectedcat' $cb>&nbsp;<b>$t</b>&nbsp;</td>\n";
            print "<td class='usercolr' valign=top $cb>", $usercol ? "<br>" :
              "<img src=images/rc2.gif alt=\"\">","</td>\n";
            }
        else {
            print "<td class='usercoll' valign=top $tb>", $usercol ? "<br>" :
              "<img src=images/lc1.gif alt=\"\">","</td>\n";
            print "<td class='usercolc' $tb>&nbsp;",
                  "<a href=$gconfig{'webprefix'}/?cat=$c><b>$t</b></a>&nbsp;</td>\n";
            print "<td class='usercolr' valign=top $tb>", $usercol ? "<br>" :
              "<img src=images/rc1.gif alt=\"\">","</td>\n";
            }
        print "<td width=10></td>\n";
        }
    print "</tr></table> <table id='mods' border=0 cellpadding=0 cellspacing=0 ",
              "width=100% $cb>\n";
    print "<tr><td><table width=100% cellpadding=5>\n";

    # Display the modules in this category
    $pos = 0;
    $cols = $gconfig{'nocols'} ? $gconfig{'nocols'} : 4;
    $per = 100.0 / $cols;
    foreach $m (@modules) {
        next if ($m->{'category'} ne $in{'cat'});

        if ($pos % $cols == 0) { print "<tr>\n"; }
        local $idx = $m->{'index_link'};
        print "<td valign=top align=center width=$per\%>\n";
        print "<table border bgcolor=#ffffff><tr><td><a href=$gconfig{'webprefix'}/$m->{'dir'}/$idx>",
              "<img src=$m->{'dir'}/images/icon.gif alt=\"\" border=0></a>",
              "</td></tr></table>\n";
        print "<a href=$gconfig{'webprefix'}/$m->{'dir'}/$idx>$m->{'desc'}</a></td>\n";
        if ($pos++ % $cols == $cols - 1) { print "</tr>\n"; }
        }
    while($pos++ % $cols) {
        print "<td width=$per\%></td>\n";
        }
    print "</table></td></tr></table><p><hr id='mods_hr'>\n";
    }

# Check for incorrect OS
if (&foreign_check("webmin")) {
    &foreign_require("webmin", "webmin-lib.pl");
    &webmin::show_webmin_notifications();
    }

if ($miniserv{'logout'} &&
    !$ENV{'SSL_USER'} && !$ENV{'LOCAL_USER'} && !$ENV{'ANONYMOUS_USER'} &&
    $ENV{'HTTP_USER_AGENT'} !~ /webmin/i) {
    print "<table id='altlogout' width=100% cellpadding=0 cellspacing=0><tr>\n";
    if ($main::session_id) {
        print "<td align=right><a href='session_login.cgi?logout=1'>",
              "$text{'main_logout'}</a></td>\n";
        }
    else {
        print "<td align=right><a href=switch_user.cgi>",
              "$text{'main_switch'}</a></td>\n";
        }
    print "</tr></table>\n";
    }

print $text{'main_footer'};
&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.0035 ]--