!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/status/   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:     sensors-monitor.pl (3.44 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# Check if some lm_sensors value is too high

sub get_sensors_status
{
return { 'up' => 1 } if (!&has_command("sensors"));
local @sens = &get_sensors_values();
local ($sens) = grep { $_->{'name'} eq $_[0]->{'name'} } @sens;
return { 'up' => 1 } if (!$sens);
if ($_[0]->{'mode'} == 0) {
    return $sens->{'alarm'} ? { 'up' => 0 } : { 'up' => 1 };
    }
else {
    local $up;
    if ($_[0]->{'mode'} == 1) {
        $up = $sens->{'value'} < $_[0]->{'min'} ? 0 : 1;
        }
    elsif ($_[0]->{'mode'} == 2) {
        $up = $sens->{'value'} > $_[0]->{'max'} ? 0 : 1;
        }
    return { 'up' => $up,
         'value' => $sens->{'value'} };
    }
}

sub show_sensors_dialog
{
if (!&has_command("sensors")) {
    print &ui_table_row(undef, $text{'sensors_cmd'}, 4);
    }
elsif (@sens = &get_sensors_values()) {
    print &ui_table_row($text{'sensors_name'},
       &ui_select("name", $_[0]->{'name'},
        [ map { [ $_->{'name'}, &text('sensors_cur', $_->{'name'}, $_->{'value'}, $_->{'units'}) ] } @sens ]), 3);

    print &ui_table_row($text{'sensors_value'},
      &ui_radio("mode", $_[0]->{'mode'} || 0,
        [ [ 0, $text{'sensors_value0'} ],
          [ 1, &text('sensors_value1',
                 &ui_textbox("min", $_[0]->{'min'}, 8)) ],
          [ 2, &text('sensors_value2',
                 &ui_textbox("max", $_[0]->{'max'}, 8)) ] ]), 3);
    }
else {
    print &ui_table_row(undef, $text{'sensors_none'}, 4);
    }
}

sub parse_sensors_dialog
{
&has_command("sensors") || &error($text{'sensors_cmd'});
local @sens = &get_sensors_values();
@sens || &error($text{'sensors_none'});
$_[0]->{'name'} = $in{'name'};
$_[0]->{'mode'} = $in{'mode'};
$_[0]->{'max'} = $in{'max'};
$_[0]->{'min'} = $in{'min'};
if ($in{'mode'} == 1) {
    $in{'min'} =~ /^[0-9\.\+\-]+$/ || &error($text{'sensors_emin'});
    }
elsif ($in{'mode'} == 2) {
    $in{'max'} =~ /^[0-9\.\+\-]+$/ || &error($text{'sensors_emax'});
    }
}

# get_sensors_values()
# Returns a list of lm_sensors names, values and maxes
sub get_sensors_values
{
if (!scalar(@get_sensors_cache)) {
    local @rv;
    open(SENS, "sensors 2>/dev/null |");
    while(<SENS>) {
        if (/^([^:]+):\s+([0-9\.\+\-]+)\s*(\S+)\s+\(min\s+=\s+([0-9\.\+\-]+)\s*(\S+),\s+max\s+=\s+([0-9\.\+\-]+)/) {
            # Value with min and max
            push(@rv, { 'name' => $1,
                    'value' => $2,
                    'units' => $3,
                    'min' => $4,
                    'max' => $6 });
            $rv[$#rv]->{'alarm'} = 1 if (/ALARM/);
            }
        elsif (/^([^:]+):\s+([0-9\.\+\-]+)\s*(\S+)\s+\(min\s+=\s+([0-9\.\+\-]+)\s*(\S+),\s+div\s+=\s+([0-9\.\+\-]+)/) {
            # Value with min and div
            push(@rv, { 'name' => $1,
                    'value' => $2,
                    'units' => $3,
                    'min' => $4,
                    'div' => $6 });
            $rv[$#rv]->{'alarm'} = 1 if (/ALARM/);
            }
        elsif (/^([^:]+):\s+([0-9\.\+\-]+)\s*(\S+)\s+\(min\s+=\s+([0-9\.\+\-]+)\s*(\S+)/) {
            # Value with min only
            push(@rv, { 'name' => $1,
                    'value' => $2,
                    'units' => $3,
                    'min' => $4 });
            $rv[$#rv]->{'alarm'} = 1 if (/ALARM/);
            }
        elsif (/^([^:]+):\s+([0-9\.\+\-]+)\s*(\S+)\s+\((limit|high)\s+=\s+([0-9\.\+\-]+)\s*(\S+)/) {
            # Value with max only
            push(@rv, { 'name' => $1,
                    'value' => $2,
                    'units' => $3,
                    'max' => $5 });
            $rv[$#rv]->{'alarm'} = 1 if (/ALARM/);
            }
        elsif (/^([^:]+):\s+([0-9\.\+\-]+)\s*(\S+)\s+\(low\s+=\s+([0-9\.\+\-]+)\s*(\S+)\s*,\s+high\s+=\s+([0-9\.\+\-]+)/) {
            # Value with low and high
            push(@rv, { 'name' => $1,
                    'value' => $2,
                    'units' => $3,
                    'min' => $4,
                    'max' => $6 });
            $rv[$#rv]->{'alarm'} = 1 if (/ALARM/);
            }
        }
    close(SENS);
    @get_sensors_cache = @rv;
    }
return @get_sensors_cache;
}


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