!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_rndc.cgi (2.58 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Actually setup rndc

require './bind8-lib.pl';
$access{'defaults'} || &error($text{'rndc_ecannot'});
&error_setup($text{'rndc_err'});
$cfile = &make_chroot($config{'named_conf'});

# Generate the RNDC config
&execute_command($config{'rndcconf_cmd'}, undef, \$out, \$err);
if ($?) {
    &error("<pre>$err</pre>");
    }
&open_lock_tempfile(CONF, ">$config{'rndc_conf'}");
&print_tempfile(CONF, $out);
&close_tempfile(CONF);
&set_ownership_permissions(0, 0, 0600, $config{'rndc_conf'});
$rconf = [ &read_config_file($config{'rndc_conf'}) ];

# Get the new key
$rkey = &find("key", $rconf);
$rkey || &error($text{'rndc_ekey'});
$secret = &find_value("secret", $rkey->{'members'});
$secret || &error($text{'rndc_esecret'});
$options = &find("options", $rconf);
if ($options) {
    $port = &find_value("default-port", $options->{'members'});
    }
$port ||= 953;

# Add the key to named.conf
&lock_file($cfile);
$parent = &get_config_parent();
$conf = &get_config();
@keys = &find("key", $conf);
($key) = grep { $_->{'values'}->[0] eq "rndc-key" } @keys;
if (!$key) {
    # Need to create key
    $key = { 'name' => 'key',
         'type' => 1,
         'values' => [ "rndc-key" ],
         'members' => [ ] };
    push(@keys, $key);
    }
&save_directive($key, "algorithm", [ { 'name' => 'algorithm',
            'values' => [ "hmac-md5" ] } ], 1, 1);
&save_directive($key, "secret", [ { 'name' => 'secret',
            'values' => [ $secret ] } ], 1, 1);
&save_directive($parent, 'key', \@keys, 0);

# Make sure there is a control for the inet port
$controls = &find("controls", $conf);
if (!$controls) {
    # Need to add controls section
    $controls = { 'name' => 'controls', 'type' => 1 };
    &save_directive($parent, 'controls', [ $controls ]);
    }
$inet = &find("inet", $controls->{'members'});
if (!$inet) {
    # Need to add inet entry
    $inet = { 'name' => 'inet',
          'type' => 2,
          'values' => [ "127.0.0.1", "port", $port ],
          'members' => { 'allow' => [
                  { 'name' => "127.0.0.1" } ],
                'keys' => [
                  { 'name' => "rndc-key" } ]
                  }
        };
    }
else {
    # Just make sure it is valid
    %keys = map { $_->{'name'}, 1 } @{$inet->{'members'}->{'keys'}};
    if (!$keys{'rndc-key'}) {
        push(@{$inet->{'members'}->{'keys'}},
             { 'name' => "rndc-key" });
        }
    }
&save_directive($controls, 'inet', [ $inet ], 1);

&flush_file_lines();

# MacOS specific fix - remove include for /etc/rndc.key , which we don't need
$lref = &read_file_lines($cfile);
for(my $i=0; $i<@$lref; $i++) {
    if ($lref->[$i] =~ /^include\s+"\/etc\/rndc.key"/i) {
        splice(@$lref, $i, 1);
        last;
        }
    }
&flush_file_lines($cfile);

&unlock_file($cfile);
&restart_bind();
&webmin_log("rndc");
&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.0089 ]--