!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/servers/   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:     auto.pl (2.85 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Automatically discover new servers

$no_acl_check++;
use strict;
use warnings;
require './servers-lib.pl';
our (%config, %text, @cluster_modules);
&foreign_require("mailboxes", "mailboxes-lib.pl");
&foreign_require("net", "net-lib.pl");

my $debug;
if ($ARGV[0] eq "--debug" || $ARGV[0] eq "-debug") {
    $debug = 1;
    }

my $nets;
if (!$config{'auto_net'}) {
    $nets = &get_my_address();
    }
elsif (&check_ipaddress($config{'auto_net'})) {
    $nets = $config{'auto_net'};
    }
else {
    my ($iface) = grep { $_->{'fullname'} eq $config{'auto_net'} }
               &net::active_interfaces();
    $iface && $iface->{'address'} || die $text{'find_eiface'};
    $nets = $iface->{'address'};
    }
my @broad;
foreach my $net (split(/\s+/, $nets)) {
    $net =~ s/\.\d+$/\.0/;
    $net =~ /^(\d+\.\d+\.\d+)\.0$/ || die $text{'find_escan'};
    for(my $i=0; $i<256; $i++) {
        push(@broad, "$1.$i");
        }
    }
my $limit = $config{'scan_time'};
my @cluster = grep { $config{'auto_'.$_} } @cluster_modules;
if ($debug) {
    print "Checking on ",join(" ", @broad),"\n";
    print "User = $config{'auto_user'}\n";
    print "Pass = $config{'auto_pass'}\n";
    }
my ($found, $already, $foundme, $addmods) = 
    &find_servers(\@broad, $config{'scan_time'}, !$debug,
          $config{'auto_user'},
          $config{'auto_pass'}, $config{'auto_type'}, \@cluster,
          $config{'auto_self'});
if ($debug) {
    foreach my $f (@$found) {
        my $added = $addmods->{$f->{'id'}};
        print "On $f->{'host'} added $added->[0]->{'host'} ",
              ($added->[1] ? "OK" : "FAILED")," ",
              $added->[2],"\n";
        }
    }

# Send an email for each new system found
my @servers = &list_servers();
if ($config{'auto_email'}) {
    foreach my $f (@$found) {
        &send_auto_email(&text('email_regsubject', $f->{'host'}),
                 &text('email_reg', $f->{'host'}));
        }
    }

# See if there were any systems that are registered and on the same net, but
# were not found 3 times in a row.
if ($config{'auto_remove'}) {
    my @net = split(/\./, $nets);
    foreach my $s (@servers) {
        my $ip = &to_ipaddress($s->{'host'});
        my @ip = split(/\./, $ip);
        if ($ip[0] == $net[0] && $ip[1] == $net[1] &&
            $ip[2] == $net[2]) {
            # On scanned net, so should have been found
            my ($f) = grep { &to_ipaddress($_->{'host'}) eq $ip }
                (@$found, @$already);
            if (!$f && $s->{'notfound'}++ >= 3) {
                # Not found too many times Delete it ..
                &delete_server($s->{'id'});
                if ($config{'auto_email'}) {
                    &send_auto_email(
                        &text('email_unregsubject',
                              $f->{'host'}),
                        &text('email_unreg',
                              $f->{'host'}));
                    }
                }
            else {
                # Found, or only not found once
                if ($f) {
                    $s->{'notfound'} = 0;
                    }
                &save_server($s);
                }
            }
        }
    }

sub send_auto_email
{
my ($subject, $body) = @_;
&mailboxes::send_text_mail(&mailboxes::get_from_address(),
               $config{'auto_email'},
               undef,
               $subject,
               $body,
               $config{'auto_smtp'});
}


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