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


Viewing file:     convert.cgi (3.52 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# convert.cgi
# Convert unix to webmin users

require './acl-lib.pl';
&ReadParse();
&error_setup($text{'convert_err'});
$access{'sync'} && $access{'create'} || &error($text{'convert_ecannot'});
&foreign_require("useradmin", "user-lib.pl");

# Validate inputs
if ($access{'gassign'} ne '*') {
    @gcan = split(/\s+/, $access{'gassign'});
    &indexof($in{'wgroup'}, @gcan) >= 0 ||
        &error($text{'convert_ewgroup2'});
    }
if ($in{'conv'} == 1) {
    $in{'users'} =~ /\S/ || &error($text{'convert_eusers'});
    map { $users{$_}++ } split(/\s+/, $in{'users'});
    }
elsif ($in{'conv'} == 2) {
    map { $nusers{$_}++ } split(/\s+/, $in{'nusers'});
    }
elsif ($in{'conv'} == 3) {
    $gid = getgrnam($in{'group'});
    defined($gid) || &error($text{'convert_egroup'});
    }
elsif ($in{'conv'} == 4) {
    $in{'min'} =~ /^\d+$/ || &error($text{'convert_emin'});
    $in{'max'} =~ /^\d+$/ || &error($text{'convert_emax'});
    }

# Get the group to add to
foreach $g (&list_groups()) {
    $group = $g if ($g->{'name'} eq $in{'wgroup'});
    $exists{$g->{'name'}}++;
    }
$group || &error($text{'convert_ewgroup'});

if ($in{'conv'} == 3) {
    # Find secondary members of group
    @ginfo = getgrnam($in{'group'});
    @members = split(/\s+/, $ginfo[3]);
    }

# Build the list of users
if ($in{'sync'}) {
    # Can just get from getpw* system calls, as password isn't needed
    @users = ( );
    setpwent();
    while(@uinfo = getpwent()) {
        push(@users, { 'user' => $uinfo[0],
                   'pass' => $uinfo[1],
                   'uid' => $uinfo[2],
                   'gid' => $uinfo[3],
                   'real' => $uinfo[6],
                   'home' => $uinfo[7],
                   'shell' => $uinfo[8] });
        }
    }
else {
    # Read /etc/passwd
    @users = &useradmin::list_users();
    }

# Convert matching users
&ui_print_header(undef, $text{'convert_title'}, "");
print &ui_subheading($text{'convert_msg'});
print "<table border width=100%><tr><td bgcolor=#c0c0c0><pre>\n";
map { $exists{$_->{'name'}}++ } &list_users();
$skipped = $exists = $invalid = $converted = 0;
foreach $u (@users) {
    local $ok;
    if ($in{'conv'} == 0) {
        $ok = 1;
        }
    elsif ($in{'conv'} == 1) {
        $ok = $users{$u->{'user'}};
        }
    elsif ($in{'conv'} == 2) {
        $ok = !$nusers{$u->{'user'}};
        }
    elsif ($in{'conv'} == 3) {
        $ok = $u->{'gid'} == $gid ||
              &indexof($u->{'user'}, @members) >= 0;
        }
    elsif ($in{'conv'} == 4) {
        $ok = $u->{'uid'} >= $in{'min'} &&
              $u->{'uid'} <= $in{'max'};
        }
    if (!$ok) {
        #print &text('convert_skip', $u->{'user'}),"\n";
        $skipped++;
        }
    elsif ($exists{$u->{'user'}}) {
        print "<i>",&text('convert_exists', $u->{'user'}),"</i>\n";
        $exists++;
        }
    elsif ($u->{'user'} !~ /^[A-z0-9\-\_\.]+$/) {
        print "<i>",&text('convert_invalid', $u->{'user'}),"</i>\n";
        $invalid++;
        }
    else {
        # Actually add the user
        print "<b>",&text('convert_added', $u->{'user'}),"</b>\n";
        local $user = { 'name' => $u->{'user'},
                'pass' => $in{'sync'} ? 'x' : $u->{'pass'},
                'modules' => $group->{'modules'} };
        &create_user($user);
        foreach $m (@{$group->{'modules'}}, "") {
            local %groupacl;
            if (&read_file("$config_directory/$m/$in{'wgroup'}.gacl",
                       \%groupacl)) {
                &write_file(
                    "$config_directory/$m/$u->{'user'}.acl",
                    \%groupacl);
                }
            }

        push(@{$group->{'members'}}, $u->{'user'});
        $exists{$u->{'user'}}++;
        $converted++;
        }
    }
endpwent() if ($gconfig{'os_type'} ne 'hpux');

# Finish off
&modify_group($group->{'name'}, $group);
&restart_miniserv();

# Print summary
print &text('convert_done', $converted, $invalid, $exists, $skipped),"<p>\n";

print "</pre></td></tr></table><br>\n";
&ui_print_footer("", $text{'index_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.0064 ]--