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

Software: Apache/2.2.3 (CentOS). PHP/5.1.6 

uname -a: Linux mx-ll-110-164-51-230.static.3bb.co.th 2.6.18-194.el5PAE #1 SMP Fri Apr 2 15:37:44
EDT 2010 i686
 

uid=48(apache) gid=48(apache) groups=48(apache) 

Safe-mode: OFF (not secure)

/usr/libexec/webmin/proftpd/   drwxr-xr-x
Free 53.79 GB of 127.8 GB (42.09%)
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 (8.04 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# index.cgi
# Display the icons for various types of proftpd config options

require './proftpd-lib.pl';

# Check if proftpd is installed
@st = stat($config{'proftpd_path'});
if (!@st) {
    &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
        &help_search_link("proftpd", "man", "doc", "google"));
    print &text('index_eproftpd', "<tt>$config{'proftpd_path'}</tt>",
          "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";

    &foreign_require("software", "software-lib.pl");
    $lnk = &software::missing_install_link("proftpd",$text{'index_proftpd'},
            "../$module_name/", $text{'index_title'});
    print $lnk,"<p>\n" if ($lnk);

    &ui_print_footer("/", $text{'index'});
    exit;
    }

# Check if the config file exists
$conf = &get_config();
if (!@$conf) {
    &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
        &help_search_link("proftpd", "man", "doc", "google"));
    print &text('index_econf', "<tt>$config{'proftpd_conf'}</tt>",
          "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";
    &ui_print_footer("/", $text{'index'});
    exit;
    }

# Check if the executable has changed ..
if ($site{'size'} != $st[7]) {
    # Check if it really is proftpd and the right version
    $site{'size'} = $st[7];
    $ver = &get_proftpd_version(\$out);
    if (!$ver) {
        &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
            &help_search_link("proftpd", "man", "doc", "google"));
        print &text('index_eproftpd2',
              "<tt>$config{'proftpd_path'}</tt>",
              "$gconfig{'webprefix'}/config.cgi?$module_name",
              "<tt>$config{'proftpd_path'} -v</tt>",
              "<pre>$out</pre>"),"<p>\n";
        &ui_print_footer("/", $text{'index'});
        exit;
        }
    $site{'version'} = $ver;
    if ($site{'version'} < 0.99) {
        &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
            &help_search_link("proftpd", "man", "doc", "google"));
        print &text('index_eversion',
              "<tt>$config{'proftpd_path'}</tt>",
              "$gconfig{'webprefix'}/config.cgi?$module_name"),"<p>\n";
        &ui_print_footer("/", $text{'index'});
        exit;
        }

    # Get the list of modules
    local @mods;
    open(MODS, "$config{'proftpd_path'} -l |");
    while(<MODS>) {
        s/\r|\n//g;
        if (/^\s*(\S+)\.c$/) {
            push(@mods, $1);
            }
        }
    close(MODS);
    $site{'modules'} = join(" ", @mods);
    &write_file("$module_config_directory/site", \%site);
    }

&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
    &help_search_link("proftpd", "man", "doc", "google"),
    undef, undef, &text('index_version', $site{'version'}));
$conf = &get_config();

# Display global category icons
print &ui_subheading($text{'index_global'});
$ft_icon = { "icon" => "images/dir.gif",
         "name" => $text{'ftpaccess_title'},
         "link" => "ftpaccess.cgi" };
$us_icon = { "icon" => "images/ftpusers.gif",
         "name" => $text{'ftpusers_title'},
         "link" => "edit_ftpusers.cgi" };
$ed_icon = { "icon" => "images/edit.gif",
         "name" => $text{'manual_configs'},
         "link" => "allmanual_form.cgi" };
&config_icons("root global", "edit_global.cgi?", $ft_icon, $us_icon, $ed_icon);

# Display global per-directory/limit options
$global = &find_directive_struct("Global", $conf);
$gconf = $global->{'members'} if ($global);
@dir = ( &find_directive_struct("Directory", $gconf) ,
     &find_directive_struct("Limit", $gconf) );
if (@dir) {
    print &ui_hr();
    print &ui_subheading($text{'virt_header'});
    foreach $d (@dir) {
        if ($d->{'name'} eq 'Limit') {
            push(@links, "limit_index.cgi?limit=".
                     &indexof($d, @$gconf)."&global=1");
            push(@titles, &text('virt_limit', $d->{'value'}));
            push(@icons, "images/limit.gif");
            }
        else {
            push(@links, "dir_index.cgi?idx=".
                     &indexof($d, @$gconf)."&global=1");
            push(@titles, &text('virt_dir', $d->{'value'}));
            push(@icons, "images/dir.gif");
            }
        }
    &icons_table(\@links, \@titles, \@icons, 3);
    }

print "<table width=100%><tr><td>\n";

print "<form action=create_dir.cgi>\n";
print "<input type=hidden name=global value=1>\n";
print "<table border>\n";
print "<tr $tb> <td><b>$text{'virt_adddir'}</b></td> </tr>\n";
print "<tr $cb> <td><table>\n";
print "<tr> <td><b>$text{'virt_path'}</b></td>\n";
print "<td><input name=dir size=30>\n";
print "<input type=submit value=\"$text{'create'}\"></td> </tr>\n";
print "</table></td></tr></table></form>\n";

print "</td><td>\n";

print "<form action=create_limit.cgi>\n";
print "<input type=hidden name=global value=1>\n";
print "<table border>\n";
print "<tr $tb> <td><b>$text{'virt_addlimit'}</b></td> </tr>\n";
print "<tr $cb> <td><table>\n";
print "<tr> <td><b>$text{'virt_cmds'}</b></td>\n";
print "<td><input name=cmd size=20>\n";
print "<input type=submit value=\"$text{'create'}\"></td> </tr>\n";
print "</table></td></tr></table></form>\n";

print "</td></tr></table>\n";


# Start virtual server list with default
push(@vname, $text{'index_defserv'});
push(@vlink, "virt_index.cgi");
push(@vdesc, $text{'index_defdesc'});
push(@vaddr, $text{'index_any'});
push(@vserv, &def(&find_directive("ServerName", $conf), $text{'default'}));

# Add other virtual servers
@virt = &find_directive_struct("VirtualHost", $conf);
foreach $v (@virt) {
    $vm = $v->{'members'};
    push(@vname, $text{'index_virt'});
    push(@vlink, "virt_index.cgi?virt=".&indexof($v, @$conf));
    push(@vaddr, $v->{'value'});
    $sname = &find_directive("ServerName", $vm);
    local $ip = &to_ipaddress($v->{'value'});
    push(@vdesc, &text('index_vdesc', $ip ? $ip : $text{'index_eip'}));
    push(@vserv, &def(&find_vdirective("ServerName", $vm, $conf),
              $text{'index_auto'}));
    }

# Show virtual servers
print &ui_hr();
print &ui_subheading($text{'index_virts'});

if ($config{'show_list'} && scalar(@vname)) {
    # as list for people with lots of servers
    print "<table width=100% border=1>\n";
    print "<tr $tb> <td><b>$text{'index_type'}</b></td> ",
          "<td><b>$text{'index_addr'}</b></td> ",
          "<td><b>$text{'index_name'}</b></td> </tr>\n";
    for($i=0; $i<@vname; $i++) {
        print "<tr $cb>\n";
        print "<td><a href=\"$vlink[$i]\">",
              &html_escape($vname[$i]),"</a></td>\n";
        print "<td>",&html_escape($vaddr[$i]),"</td>\n";
        print "<td>",&html_escape($vserv[$i]),"</td>\n";
        print "</tr>\n";
        }
    print "</table>\n";
    }
else {
    # as icons for niceness
    print "<table width=100% cellpadding=5>\n";
    for($i=0; $i<@vname; $i++) {
        print "<tr> <td valign=top align=center nowrap>";
        &generate_icon("images/virt.gif", &html_escape($vname[$i]),
                   $vlink[$i]);
        print "</td> <td valign=top>\n";
        print &html_escape($vdesc[$i]),"<br>\n";
        print "<table width=100%><tr>\n";
        print "<td width=30%><b>$text{'index_addr'}</b> ",
              &html_escape($vaddr[$i]),"</td>\n";
        print "<td width=70%><b>$text{'index_name'}</b> ",
              &html_escape($vserv[$i]),"</td></tr>\n";
        print "</table></td> </tr>\n";
        }
    print "</table>\n";
    }

print "<form action=create_virt.cgi>\n";
print "<table border>\n";
print "<tr $tb> <td><b>$text{'index_create'}</b></td> </tr>\n";
print "<tr $cb> <td><table>\n";
print "<tr> <td><b>$text{'index_addr'}</b></td>\n";
print "<td><input name=addr size=25></td> </tr>\n";
print "<tr> <td><b>$text{'index_port'}</b></td>\n";
print "<td>",&opt_input(undef, "Port", $text{'default'}, 6),"</td> </tr>\n";
print "<tr> <td><b>$text{'index_name'}</b></td>\n";
print "<td>",&opt_input(undef, "ServerName", $text{'default'}, 25);
print "&nbsp;&nbsp;\n";
print "<input type=submit value=\"$text{'create'}\"></td> </tr>\n";
print "</table></td></tr></table>\n";
print "</form>\n";

# Find out how ProFTPd is running
($inet, $inet_mod) = &running_under_inetd();
if (!$inet) {
    # Get the FTP server pid
    $pid = &get_proftpd_pid();
    print &ui_hr();
    print &ui_buttons_start();
    }
if (!$inet && $pid) {
    print &ui_buttons_row("apply.cgi",
                  $text{'index_apply'},
                  &get_proftpd_version() > 1.22 ? 
                $text{'index_applymsg2'} :
                $text{'index_applymsg'});
    print &ui_buttons_row("stop.cgi",
                  $text{'index_stop'}, $text{'index_stopmsg'});
    }
elsif (!$inet && !$pid) {
    print &ui_buttons_row("start.cgi",
              $text{'index_start'},
              $inet_mod ? &text('index_startmsg', "/$inet_mod/")
                : $text{'index_startmsg2'});
    }
if (!$inet) {
    print &ui_buttons_end();
    }

&ui_print_footer("/", $text{'index'});


:: Command execute ::

Enter:
 
Select:
 

:: Shadow's tricks :D ::

Useful Commands
 
Warning. Kernel may be alerted using higher levels
Kernel Info:

:: Preddy's tricks :D ::

Php Safe-Mode Bypass (Read Files)

File:

eg: /etc/passwd

Php Safe-Mode Bypass (List Directories):

Dir:

eg: /etc/

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

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

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

--[ c999shell v. 1.0 pre-release build #16 Modded by Shadow & Preddy | RootShell Security Group | r57 c99 shell | Generation time: 0.0153 ]--