!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 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_group.cgi (3.55 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# save_group.cgi
# Create, modify or delete a webmin group

require './acl-lib.pl';
&ReadParse();

# Check for special button clicks, and redirect
if ($in{'but_clone'}) {
    &redirect("edit_group.cgi?clone=".&urlize($in{'old'}));
    exit;
    }
elsif ($in{'but_delete'}) {
    &redirect("delete_group.cgi?group=".&urlize($in{'old'}));
    exit;
    }

if ($in{'old'}) {
    # Get the original group
    %group = ( );
    $old = &get_group($in{'old'});
    $old || &error($text{'gedit_egone'});
    $group{'members'} = $old->{'members'};
    $group{'proto'} = $old->{'proto'};
    $group{'id'} = $old->{'id'};
    }
&error_setup($text{'gsave_err'});

# Check for duplicate group names
$in{'name'} =~ /^[A-z0-9\-\_\.\@]+$/ && $in{'name'} !~ /^\@/ ||
    &error(&text('gsave_ename', $in{'name'}));
$in{'name'} eq 'webmin' && &error($text{'gsave_enamewebmin'});
if (!$in{'old'} || $in{'old'} ne $in{'name'}) {
    $clash = &get_group($in{'name'});
    $clash && &error(&text('gsave_edup', $in{'name'}));
    }
$in{'desc'} !~ /:/ || &error($text{'gsave_edesc'});

# Find the current parent group
if ($in{'old'}) {
    foreach $g (&list_groups()) {
        if (&indexof('@'.$in{'old'}, @{$g->{'members'}}) >= 0) {
            $oldgroup = $g;
            }
        }
    }

if (defined($in{'group'})) {
    # Check if group is allowed
    if ($access{'gassign'} ne '*') {
        local @gcan = split(/\s+/, $access{'gassign'});
        $in{'group'} && &indexof($in{'group'}, @gcan) >= 0 ||
          !$in{'group'} && &indexof('_none', @gcan) >= 0 ||
          $oldgroup && $oldgroup->{'name'} eq $in{'group'} ||
            &error($text{'save_egroup'});
        }

    # Store parent group membership
    $newgroup = &get_group($in{'group'});
    if ($in{'group'} ne ($oldgroup ? $oldgroup->{'name'} : '')) {
        # Group has changed - update the member lists
        if ($oldgroup) {
            $oldgroup->{'members'} =
                [ grep { $_ ne '@'.$in{'old'} }
                  @{$oldgroup->{'members'}} ];
            &modify_group($oldgroup->{'name'}, $oldgroup);
            }
        if ($newgroup) {
            push(@{$newgroup->{'members'}}, '@'.$in{'name'});
            &modify_group($in{'group'}, $newgroup);
            }
        }
    }

# Work out group modules
@mods = split(/\0/, $in{'mod'});

if ($oldgroup) {
    # Remove modules from the old parent group
    @mods = grep { &indexof($_, @{$oldgroup->{'modules'}}) < 0 } @mods;
    }

if ($newgroup) {
    # Add modules from parent group to list
    local @ownmods;
    foreach $m (@mods) {
        push(@ownmods, $m)
            if (&indexof($m, @{$newgroup->{'modules'}}) < 0);
        }
    @mods = &unique(@mods, @{$newgroup->{'modules'}});
    $group{'ownmods'} = \@ownmods;

    # Copy ACL files for parent group
    local $name = $in{'old'} ? $in{'old'} : $in{'name'};
    &copy_group_acl_files($in{'group'}, $name,
                  [ @{$newgroup->{'modules'}}, "" ]);
    }

# Store group options
$group{'modules'} = \@mods;
$group{'name'} = $in{'name'};
$group{'desc'} = $in{'desc'};

if ($in{'old'}) {
    # update group
    &modify_group($in{'old'}, \%group);

    # recursively update all member users and groups
    @glist = &list_groups();
    @ulist = &list_users();
    &update_members(\@ulist, \@glist, $group{'modules'},
            $old->{'members'});
    }
else {
    # create group
    &create_group(\%group, $in{'clone'});
    }

if ($in{'old'} && $in{'acl_security_form'}) {
    # Update group's global ACL
    &foreign_require("", "acl_security.pl");
    &foreign_call("", "acl_security_save", \%uaccess, \%in);
    $aclfile = "$config_directory/$in{'name'}.gacl";
    &lock_file($aclfile);
    &save_group_module_acl(\%uaccess, $in{'name'}, "", 1);
    chmod(0640, $aclfile) if (-r $aclfile);
    &unlock_file($aclfile);
    }

&reload_miniserv();
if ($in{'old'}) {
    &webmin_log("modify", "group", $in{'old'}, \%in);
    }
else {
    &webmin_log("create", "group", $group{'name'}, \%in);
    }
&redirect("");


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