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


Viewing file:     download.cgi (4.58 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# download.cgi
# Save a download or start it right now

require './updown-lib.pl';
use Time::Local;
&ReadParse();
&error_setup($text{'download_err'});

# Validate and store inputs
$i = 0;
@urls = split(/[\r\n]+/, $in{'urls'});
@urls || &error($text{'download_enone'});
foreach $u (@urls) {
    local ($proto, $host, $port, $page, $ssl);
    if ($u =~ /^http/) {
        ($host, $port, $page, $ssl, $user, $pass) = &parse_http_url($u);
        $proto = $ssl ? "https" : "http";
        }
    elsif ($u =~ /^ftp:\/\/([^\/]+)(:21)?(\/.*)$/) {
        $proto = "ftp";
        $host = $1; $page = $3;
        }
    else {
        &error(&text('download_eurl', $u));
        }
    if ($host =~ /^([^:\@]+):([^:\@]+)\@(\S+)/) {
        $user = $1;
        $pass = $2;
        $host = $3;
        }
    $download{"url_$i"} = $u;
    $download{"proto_$i"} = $proto;
    $download{"host_$i"} = $host;
    $download{"user_$i"} = $user;
    $download{"pass_$i"} = $pass;
    $download{"port_$i"} = $port;
    $download{"page_$i"} = $page;
    $download{"ssl_$i"} = $ssl;
    $i++;
    }
$in{'dir'} || &error($text{'upload_edir'});
&can_write_file($in{'dir'}) ||
    &error(&text('download_eaccess', "<tt>$in{'dir'}</tt>", $!));
$download{'dir'} = $in{'dir'};
if ($can_mode != 3) {
    # User can be entered
    scalar(@uinfo = getpwnam($in{'user'})) || &error($text{'upload_euser'});
    &can_as_user($in{'user'}) ||
        &error(&text('download_eucannot', $in{'user'}));
    $download{'uid'} = $uinfo[2];
    $in{'group_def'} || scalar(@ginfo = getgrnam($in{'group'})) ||
        &error($text{'upload_egroup'});
    $can_mode == 0 || $in{'group_def'} || &in_group(\@uinfo, \@ginfo) ||
        &error($text{'download_egcannot'});
    $download{'gid'} = scalar(@ginfo) ? $ginfo[2] : $uinfo[3];
    }
else {
    # User is fixed
    if (&supports_users()) {
        @uinfo = getpwnam($remote_user);
        $download{'uid'} = $uinfo[2];
        $download{'gid'} = $uinfo[3];
        }
    }
if ($in{'bg'} && $can_schedule) {
    # Validate time
    $in{'hour'} =~ /^\d+$/ && $in{'min'} =~ /^\d+$/ &&
        $in{'day'} =~ /^\d+$/ && $in{'year'} =~ /^\d+$/ ||
            &error($text{'download_edate'});
    eval { $download{'time'} = timelocal(0, $in{'min'}, $in{'hour'},
             $in{'day'}, $in{'month'}, $in{'year'}-1900) };
    $@ && &error($text{'download_edate2'});
    }
if (defined($in{'email_def'}) && !$in{'email_def'}) {
    # Validate email
    $in{'email'} =~ /\S/ || &error($text{'upload_eemail'});
    $download{'email'} = $in{'email'};
    }

# Create the directory if needed
if (!-d $download{'dir'} && $in{'mkdir'}) {
    &switch_uid_to($download{'uid'}, $download{'gid'});
    mkdir($download{'dir'}, 0755) || &error(&text('upload_emkdir', $!));
    &switch_uid_back();
    }

# Save the settings
if ($module_info{'usermin'}) {
    &lock_file("$user_module_config_directory/config");
    $userconfig{'ddir'} = $in{'dir'};
    &write_file("$user_module_config_directory/config", \%userconfig);
    &unlock_file("$user_module_config_directory/config");
    }
else {
    &lock_file("$module_config_directory/config");
    $config{'ddir_'.$remote_user} = $in{'dir'};
    $config{'duser_'.$remote_user} = $in{'user'};
    $config{'dgroup_'.$remote_user} = $in{'group_def'} ? undef
                               : $in{'group'};
    &write_file("$module_config_directory/config", \%config);
    &unlock_file("$module_config_directory/config");
    }

if ($in{'bg'} && $can_background) {
    # Create a script to be called by At
    &foreign_require("cron", "cron-lib.pl");
    &lock_file($atjob_cmd);
    &cron::create_wrapper($atjob_cmd, $module_name, "download.pl");
    &unlock_file($atjob_cmd);
    &save_download(\%download);

    if (!$can_schedule) {
        # Just run this script right now
        &execute_command("$atjob_cmd $download{'id'} &");
        }
    else {
        # Create an At job to do the download
        &foreign_require("at", "at-lib.pl");
            {
            local %ENV;
            delete($ENV{'FOREIGN_MODULE_NAME'});
            delete($ENV{'FOREIGN_ROOT_DIRECTORY'});
            &clean_environment();
            $ENV{'REMOTE_USER'} = $remote_user;    # For usermin
            $ENV{'BASE_REMOTE_USER'} = $base_remote_user;
            &at::create_atjob(
                $module_info{'usermin'} ? $remote_user : "root",
                $download{'time'},
                "$atjob_cmd $download{'id'}",
                "/");
            &reset_environment();
            }
        }

    &redirect("index.cgi?mode=download");
    }
else {
    # Download it now, and show the results
    &ui_print_unbuffered_header(undef, $text{'download_title'}, "");

    $error = &do_download(\%download, \&progress_callback, \@paths);
    @paths = grep { $_ } @paths;
    if (@paths) {
        print "<p>$text{'download_done'}<p>\n";
        foreach $p (@paths) {
            @st = stat($p);
            print "<tt>$p</tt> ($st[7] bytes)<br>\n";
            }
        }
    if ($error) {
        print "<p><b>",&text('download_failed', $error),"</b><p>\n";
        }

    &ui_print_footer("index.cgi?mode=download", $text{'index_return'});
    }
&webmin_log("download", undef, undef, { 'urls' => \@urls,
                    'time' => $download{'time'} });


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