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


Viewing file:     mass_start_stop.cgi (2.8 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# mass_start_stop.cgi
# Start or stop multiple actions at once

require './init-lib.pl';
&ReadParse();
@sel = split(/\0/, $in{'idx'});
@sel || &error($text{'mass_enone2'});

$start = 1 if ($in{'start'} || $in{'addboot_start'});
$stop = 1 if ($in{'stop'} || $in{'delboot_stop'});
$restart = 1 if ($in{'restart'});
$enable = 1 if ($in{'addboot'} || $in{'addboot_start'});
$disable = 1 if ($in{'delboot'} || $in{'delboot_stop'});

&ui_print_unbuffered_header(undef, $start || $enable ? $text{'mass_start'} :
                   $restart ? $text{'mass_restart'} :
                          $text{'mass_stop'}, "");

# In case the action was Webmin
$SIG{'TERM'} = 'IGNORE';

if ($start || $stop || $restart) {
    # Starting or stopping a bunch of actions
    &foreign_require("proc", "proc-lib.pl");
    $access{'bootup'} || &error($text{'ss_ecannot'});

    # build list of normal and broken actions
    ($initrl) = &get_inittab_runlevel();
    @iacts = &list_actions();
    foreach $a (@iacts) {
        @ac = split(/\s+/, $a);
        push(@acts, $ac[0]);
        local $order = "9" x $config{'order_digits'};
        if ($ac[0] =~ /^\//) {
            push(@actsf, $ac[0]);
            }
        else {
            push(@actsf, "$config{'init_dir'}/$ac[0]");
            local @lvls = &action_levels(
                $start || $restart ? 'S' : 'K', $ac[0]);
            foreach $lon (@lvls) {
                local ($l, $o, $n) = split(/\s+/, $lon);
                if ($l eq $initrl) {
                    $order = $o;
                    last;
                    }
                }
            }
        push(@orders, $order);
        }

    if ($start || $restart) {
        @sel = sort { $orders[$a] <=> $orders[$b] } @sel;
        }
    else {
        @sel = sort { $orders[$b] <=> $orders[$a] } @sel;
        }
    foreach $idx (@sel) {
        local $cmd = "$actsf[$idx] ".($start ? "start" :
                          $restart ? "restart" :
                                 "stop");
        print &text('ss_exec', "<tt>$cmd</tt>"),"<p>\n";
        print "<pre>";
        &clean_environment();
        &foreign_call("proc", "safe_process_exec_logged", $cmd, 0, 0, STDOUT, undef, 1);
        &reset_environment();
        print "</pre>\n";
        push(@selacts, $acts[$idx]);
        }
    &webmin_log($start ? 'massstart' :
            $restart ? 'massrestart' : 'massstop', 'action',
            join(" ", @selacts));
    }

if ($enable || $disable) {
    # Enabling or disabling a bunch of actions
    $access{'bootup'} == 1 || &error($text{'edit_ecannot'});
    @iacts = &list_actions();
    foreach $a (@iacts) {
        @ac = split(/\s+/, $a);
        push(@acts, $ac[0]);
        }
    @toboot = map { $acts[$_] } @sel;
    foreach $b (@toboot) {
        if ($b =~ /^\//) {
            &error(&text('mass_ebroken', $ac[0]));
            }
        }
    if ($enable) {
        # Enable them all
        foreach $b (@toboot) {
            print &text('mass_enable', "<tt>$b</tt>"),"<p>\n";
            &enable_at_boot($b);
            }
        }
    else {
        # Disable them all
        foreach $b (@toboot) {
            print &text('mass_disable', "<tt>$b</tt>"),"<p>\n";
            &disable_at_boot($b);
            }
        }
    &webmin_log($enable ? 'massenable' : 'massdisable', 'action',
            join(" ", @toboot));
    }

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


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