!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/net/   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:     edit_aifc.cgi (5.08 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# edit_aifc.cgi
# Edit or create an active interface

require './net-lib.pl';
@act = &active_interfaces(1);

&ReadParse();
if ($in{'new'}) {
    # New real or virtual interface
    &ui_print_header(undef, $text{'aifc_create'}, "");
    &can_create_iface() || &error($text{'ifcs_ecannot'});
    if ($in{'virtual'}) {
        # Pick a virtual number
        $vmax = int($net::min_virtual_number);
        foreach my $e (@act) {
            $vmax = $e->{'virtual'}
                if ($e->{'name'} eq $in{'virtual'} &&
                    $e->{'virtual'} > $vmax);
            }
        }
    }
else {
    # Editing existing interface
    $a = $act[$in{'idx'}];
    &can_iface($a) || &error($text{'ifcs_ecannot_this'});
    &ui_print_header(undef, $text{'aifc_edit'}, "");
    }

# Form start
print &ui_form_start("save_aifc.cgi");
print &ui_hidden("new", $in{'new'});
print &ui_hidden("idx", $in{'idx'});
print &ui_table_start(
    $in{'virtual'} || $a && $a->{'virtual'} ne "" ? $text{'aifc_desc2'}
                              : $text{'aifc_desc1'},
    undef, 4);

# Interface name, perhaps editable
if ($in{'new'} && $in{'virtual'}) {
    $namefield = $in{'virtual'}.":".
             &ui_textbox("virtual", $vmax+1, 3).
             &ui_hidden("name", $in{'virtual'});
    }
elsif ($in{'new'}) {
    $namefield = &ui_textbox("name", undef, 6);
    }
else {
    $namefield = "<tt>$a->{'fullname'}</tt>";
    }
print &ui_table_row($text{'ifcs_name'}, $namefield);

# IP address
print &ui_table_row($text{'ifcs_ip'},
    &ui_textbox("address", $a ? $a->{'address'} : "", 15));

# Netmask field
if ($in{'virtual'} && $in{'new'} && $virtual_netmask) {
    # Fixed for virtual interface
    $netmaskfield = $virtual_netmask;
    }
elsif (!$access{'netmask'}) {
    # Cannot be edited
    $netmaskfield = $a ? $a->{'netmask'} : $config{'def_netmask'};
    }
elsif ($in{'new'}) {
    # Enter or use default
    $netmaskfield = &ui_opt_textbox(
        "netmask", $config{'def_netmask'}, 15, $text{'ifcs_auto'});
    }
else {
    # Allow editing
    $netmaskfield = &ui_textbox("netmask", $a->{'netmask'}, 15);
    }
print &ui_table_row($text{'ifcs_mask'}, $netmaskfield);

# Broadcast address field
if (!$access{'broadcast'}) {
    # Cannot be edited
    $broadfield = $a ? $a->{'broadcast'} : $config{'def_broadcast'};
    }
elsif ($in{'new'}) {
    # Can enter or use default
    $broadfield = &ui_opt_textbox(
        "broadcast", $config{'def_broadcast'}, 15,
        $text{'ifcs_auto'});
    }
else {
    # Allow editing
    $broadfield = &ui_textbox("broadcast", $a->{'broadcast'}, 15);
    }
print &ui_table_row($text{'ifcs_broad'}, $broadfield);

# Show the IPv6 field
if (&supports_address6($a)) {
    $table6 = &ui_columns_start([ $text{'ifcs_address6'},
                      $text{'ifcs_netmask6'} ], 50);
    for($i=0; $i<=@{$a->{'address6'}}; $i++) {
        $table6 .= &ui_columns_row([
            &ui_textbox("address6_$i",
                $a->{'address6'}->[$i], 40),
            &ui_textbox("netmask6_$i",
                $a->{'netmask6'}->[$i] || 64, 10) ]);
        }
    $table6 .= &ui_columns_end();
    print &ui_table_row($text{'ifcs_mode6a'},
        &ui_radio_table("mode6",
            @{$a->{'address6'}} ? "address" : "none",
            [ [ "none", $text{'ifcs_none6'} ],
              [ "address", $text{'ifcs_static3'}, $table6 ] ]), 2);
    }

# Show MTU
if (!$access{'mtu'}) {
    # Cannot be edited
    $mtufield = $a ? $a->{'mtu'} :
            $config{'def_mtu'} ? $config{'def_mtu'} : $text{'default'};
    }
elsif ($in{'new'}) {
    # Can enter or use default
    $mtufield = &ui_opt_textbox("mtu", $config{'def_mtu'}, 6,
                    $text{'ifcs_auto'});
    }
else {
    # Allow editing
    $mtufield = &ui_textbox("mtu", $a->{'mtu'}, 6);
    }
print &ui_table_row($text{'ifcs_mtu'}, $mtufield);

# Current status
if (!$access{'up'}) {
    # Cannot edit
    $upfield = !$a ? $text{'ifcs_up'} :
           $a->{'up'} ? $text{'ifcs_up'} : $text{'ifcs_down'};
    }
else {
    $upfield = &ui_radio("up", $in{'new'} || $a->{'up'} ? 1 : 0,
            [ [ 1, $text{'ifcs_up'} ], [ 0, $text{'ifcs_down'} ] ]);
    }
print &ui_table_row($text{'ifcs_status'}, $upfield);

# Hardware address, if non-virtual
if ((!$a && $in{'virtual'} eq "") ||
    ($a && $a->{'virtual'} eq "" && &iface_hardware($a->{'name'}))) {
    if ($in{'new'}) {
        $hardfield = &ui_opt_textbox("ether", undef, 18,
                         $text{'aifc_default'});
        }
    else {
        $hardfield = &ui_textbox("ether", $a->{'ether'}, 18);
        }
    print &ui_table_row($text{'aifc_hard'}, $hardfield);
    }

# Virtual sub-interfaces
if ($a && $a->{'virtual'} eq "") {
    $vcount = 0;
    foreach $va (@act) {
        if ($va->{'virtual'} ne "" && $va->{'name'} eq $a->{'name'}) {
            $vcount++;
            }
        }
    print &ui_table_row($text{'ifcs_virts'},
        $vcount." ".
            "(<a href='edit_aifc.cgi?new=1&virtual=$a->{'name'}'>".
        "$text{'ifcs_addvirt'}</a>)");
    }

# Physical parameters
if (defined($a->{'link'})) {
    print &ui_table_row($text{'ifcs_link'},
        $a->{'link'} ? $text{'ifcs_linkyes'}
                 : "<font color=red>$text{'ifcs_linkno'}</font>");
    }
if ($a->{'speed'}) {
    print &ui_table_row($text{'ifcs_speed'}, $a->{'speed'}.
        ($a->{'duplex'} ? " ".&text('ifcs_duplex', $a->{'duplex'})
                : ""));
    }
     
# End of the form
print &ui_table_end();
if ($in{'new'}) {
    @buts = ( [ undef, $text{'create'} ] );
    }
else {
    @buts = ( [ undef, $text{'save'} ] );
    if ($access{'delete'}) {
        push(@buts, [ 'delete', $text{'delete'} ]);
        }
    }
print &ui_form_end(\@buts);

&ui_print_footer("list_ifcs.cgi?mode=active", $text{'ifcs_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.0098 ]--