!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/sshd/   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:     edit_access.cgi (2.25 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# edit_access.cgi
# Display access control SSHd options

require './sshd-lib.pl';
&ui_print_header(undef, $text{'access_title'}, "", "access");
$conf = &get_sshd_config();

print &ui_form_start("save_access.cgi", "post");
print &ui_table_start($text{'access_header'}, "width=100%", 2);

if ($version{'type'} eq 'ssh') {
    # Allowed and denied hosts
    @allowh = &find_value("AllowHosts", $conf);
    print &ui_table_row($text{'access_allowh'},
        &ui_opt_textbox("allowh", join(" ", @allowh), 60,
                $text{'access_all'}));

    @denyh = &find_value("DenyHosts", $conf);
    print &ui_table_row($text{'access_denyh'},
        &ui_opt_textbox("denyh", join(" ", @denyh), 60,
                $text{'access_all'}));

    print &ui_table_hr();
    }

$commas = $version{'type'} eq 'ssh' && $version{'number'} >= 3.2;

# Allowed users
@allowu = &find_value("AllowUsers", $conf);
$allowu = $commas ? join(" ", split(/,/, $allowu[0]))
          : join(" ", @allowu);
print &ui_table_row($text{'access_allowu'},
    &ui_opt_textbox("allowu", $allowu, 60, $text{'access_all'})." ".
    &user_chooser_button("allowu", 1));

# Allowed groups
@allowg = &find_value("AllowGroups", $conf);
$allowg = $commas ? join(" ", split(/,/, $allowg[0]))
          : join(" ", @allowg);
print &ui_table_row($text{'access_allowg'},
    &ui_opt_textbox("allowg", $allowg, 60, $text{'access_all'})." ".
    &group_chooser_button("allowg", 1));

# Denied users
@denyu = &find_value("DenyUsers", $conf);
$denyu = $commas ? join(" ", split(/,/, $denyu[0]))
         : join(" ", @denyu);
print &ui_table_row($text{'access_denyu'},
    &ui_opt_textbox("denyu", $denyu, 60, $text{'access_all'})." ".
    &user_chooser_button("denyu", 1));

# Denied groups
@denyg = &find_value("DenyGroups", $conf);
$denyg = $commas ? join(" ", split(/,/, $denyg[0]))
         : join(" ", @denyg);
print &ui_table_row($text{'access_denyg'},
    &ui_opt_textbox("denyg", $denyg, 60, $text{'access_all'})." ".
    &group_chooser_button("denyg", 1));

if ($version{'type'} eq 'ssh' && $version{'number'} < 2) {
    print &ui_table_hr();

    # Silently deny users
    $silent = &find_value("SilentDeny", $conf);
    print &ui_table_row($text{'access_silent'},
        &ui_yesno_radio("silent", lc($silent) eq 'yes'));
    }

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

&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.0135 ]--