!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/ldap-server/   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_form.cgi (3.76 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show the details of one access control rule

require './ldap-server-lib.pl';
&local_ldap_server() == 1 || &error($text{'slapd_elocal'});
$access{'acl'} || &error($text{'acl_ecannot'});
&ReadParse();

# Get ACLs
if (&get_config_type() == 1) {
    $conf = &get_config();
    @access = &find("access", $conf);
    $hasorder = 0;
    }
else {
    $defdb = &get_default_db();
    $conf = &get_ldif_config();
    @access = &find_ldif("olcAccess", $conf, $defdb);
    $hasorder = 1;
    }

# Page header
if ($in{'new'}) {
    &ui_print_header(undef, $text{'eacl_title1'}, "", "eacl");
    $p = { 'what' => '*',
           'by' => [ ] };
    }
else {
    &ui_print_header(undef, $text{'eacl_title2'}, "", "eacl");
    $acl = $access[$in{'idx'}];
    $p = &parse_ldap_access($acl);
    }

# Form header
print &ui_form_start("acl_save.cgi", "post");
print &ui_hidden("new", $in{'new'});
print &ui_hidden("idx", $in{'idx'});
print &ui_table_start($text{'eacl_header'}, undef, 2);

# Rule ordering
if ($hasorder && !$in{'new'}) {
    print &ui_table_row($text{'eacl_order'},
        $p->{'order'} eq '' ? $text{'eacl_noorder'} : $p->{'order'});
    }

# Granting to what object
$what = $p->{'what'} eq '*' || $p->{'what'} eq '' ? 1 : 0;
if ($p->{'what'} =~ /^dn(\.([^=]+))?="(.*)"$/i ||
    $p->{'what'} =~ /^dn(\.([^=]+))?=(.*)$/i) {
    $dn = $3;
    $style = $2;
    if ($dn eq "") {
        $what = 2;
        }
    }
print &ui_table_row($text{'eacl_what'},
    &ui_radio_table("what", $what,
        [ [ 1, $text{'eacl_what1'} ],
          [ 2, $text{'eacl_what2'} ],
          [ 0, $text{'eacl_what0'},
            &ui_textbox("what_dn", $dn, 30)." ".
            $text{'eacl_mtype'}." ".
            &ui_select("what_style", $style,
                   [ [ '', $text{'default'} ],
                  map { [ $_, $text{'eacl_'.$_} ] }
                     @acl_dn_styles ]) ] ])."\n".
    &ui_checkbox("filter_on", 1, $text{'eacl_filter'}, $p->{'filter'})." ".
    &ui_textbox("filter", $p->{'filter'}, 40)."<br>\n".
    &ui_checkbox("attrs_on", 1, $text{'eacl_attrs'}, $p->{'attrs'})." ".
    &ui_textbox("attrs", $p->{'attrs'}, 40) );

# Access rights table
@tds = ( "width=40% nowrap", "width=30%", "width=30%" );
$wtable = &ui_columns_start([ $text{'eacl_who'},
                  $text{'eacl_access'},
                  $text{'eacl_control'} ], 100, 0, \@tds);
$i = 0;
foreach $b (@{$p->{'by'}}, { }, { }, { }) {
    $kwho = $b->{'who'} eq 'self' || $b->{'who'} eq 'users' ||
        $b->{'who'} eq 'anonymous' || $b->{'who'} eq '*' ||
        $b->{'who'} eq '';
    $kacc = !$b->{'access'} ? 'read' :
        &indexof($b->{'access'}, @acl_access_levels) >= 0 ?
            $b->{'access'} : undef;
    $wtable .= &ui_columns_row([
        # Who are we granting?
        &ui_select("wmode_$i",
               $kwho ? $b->{'who'} : 'other',
               [ [ '', "&nbsp;" ],
                 [ '*', $text{'eacl_every'} ],
                 [ 'self', $text{'eacl_self'} ],
                 [ 'users', $text{'eacl_users'} ],
                 [ 'anonymous', $text{'eacl_anonymous'} ],
                 [ 'other', $text{'eacl_other'} ] ],
               1, 0, 0, 0,
               "style='width:45%' onChange='form.who_$i.disabled = (form.wmode_$i.value != \"other\")'").
        &ui_textbox("who_$i", $kwho ? "" : $b->{'who'}, 50,
                $kwho, undef, "style='width:45%'"),

        # What access level? Show textbox if complex
        $kacc ? &ui_select("access_$i", $kacc,
                   [ map { [ $_, $text{'access_l'.$_} ] }
                     @acl_access_levels ], 1, 0, 0, 0,
                   "style='width:90%'")
              : &ui_textbox("access_$i", $b->{'access'}, 20,
                    0, undef, "style='width:90%'"),

        # Additional attrs
        &ui_textbox("control_$i", join(" ", @{$b->{'control'}}), 30,
                0, undef, "style='width:90%'"),
        ], \@tds);
    $i++;
    }
$wtable .= &ui_columns_end();
print &ui_table_row(undef, $wtable, 2);

# Form and page end
print &ui_table_end();
if ($in{'new'}) {
    print &ui_form_end([ [ undef, $text{'create'} ] ]);
    }
else {
    print &ui_form_end([ [ undef, $text{'save'} ],
                 [ 'delete', $text{'delete'} ] ]);
    }
&ui_print_footer("edit_acl.cgi", $text{'acl_return'});


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