!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 53.72 GB of 127.8 GB (42.03%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     suse-linux-9.2-ALL-lib.pl (11.36 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
# suse-linux-10.0-lib.pl
# Networking functions for SuSE linux 10.0 and above

$net_scripts_dir = "/etc/sysconfig/network";
$routes_config = "/etc/sysconfig/network/routes";
$sysctl_config = "/etc/sysconfig/sysctl";

do 'linux-lib.pl';

# boot_interfaces()
# Returns a list of interfaces brought up at boot time
sub boot_interfaces
{
local(@rv, $f);
local @active = &active_interfaces();
opendir(CONF, &translate_filename($net_scripts_dir));
while($f = readdir(CONF)) {
    if ($f =~ /^ifcfg-eth-id-([a-f0-9:]+)$/i ||
        $f =~ /^ifcfg-eth-bus-(\S+)\-(\S+)$/) {
        # An interface identified by MAC or PCI bus address!
        local (%conf, $b);
        &read_env_file("$net_scripts_dir/$f", \%conf);
        if ($2) {
            $b->{'bus'} = $1;
            $b->{'busid'} = $2;
            }
        else {
            $b->{'mac'} = $1;
            }
        local $a;
        if ($b->{'mac'}) {
            ($a) = grep { lc($_->{'ether'}) eq lc($b->{'mac'}) }
                    @active;
            }
        else {
            ($a) = grep { $_->{'address'} eq $conf{'IPADDR'} }
                    @active;
            }
        next if (!$a);
        $b->{'fullname'} = $a->{'fullname'};
        $b->{'name'} = $a->{'name'};
        $b->{'up'} = ($conf{'STARTMODE'} eq 'onboot' ||
                  $conf{'STARTMODE'} eq 'auto');
        local $pfx;
        if ($conf{'IPADDR'} =~ /^(\S+)\/(\d+)$/) {
            $b->{'address'} = $1;
            $pfx = $2;
            }
        else {
            $b->{'address'} = $conf{'IPADDR'};
            }
        $pfx = $conf{'PREFIXLEN'} if (!$pfx);
        if ($pfx) {
            $b->{'netmask'} = &prefix_to_mask($pfx);
            }
        else {
            $b->{'netmask'} = $conf{'NETMASK'};
            }
        $b->{'broadcast'} = $conf{'BROADCAST'};
        $b->{'dhcp'} = ($conf{'BOOTPROTO'} eq 'dhcp');
        $b->{'mtu'} = $conf{'MTU'};
        $b->{'edit'} = ($b->{'name'} !~ /^ppp|irlan/);
        $b->{'index'} = scalar(@rv);
        $b->{'file'} = "$net_scripts_dir/$f";
        push(@rv, $b);

        # Also find aliases in same file
        foreach my $k (keys %conf) {
            if ($k =~ /^IPADDR_(\d+)$/) {
                # Found one
                local $n = $1;
                local $label = $conf{"LABEL_$n"};
                local $ab = { 'address' => $conf{$k},
                          'netmask' => $conf{"NETMASK_$n"},
                          'broadcast' => &compute_broadcast(
                            $conf{$k},
                            $conf{"NETMASK_$n"}),
                          'code' => $n,
                          'edit' => 1,
                          'index' => scalar(@rv),
                          'name' => $b->{'name'},
                          'virtual' => $label,
                          'fullname' => $b->{'name'}.
                                ":$label",
                          'up' => 1,
                          'file' => "$net_scripts_dir/$f",
                        };
                push(@rv, $ab);
                }
            }
        }
    elsif ($f =~ /^ifcfg-([a-z0-9:\.]+)$/) {
        # A normal interface file
        local (%conf, $b);
        $b->{'fullname'} = $1;
        &read_env_file("$net_scripts_dir/$f", \%conf);
        if ($b->{'fullname'} =~ /(\S+):(\d+)/) {
            $b->{'name'} = $1;
            $b->{'virtual'} = $2;
            }
        else { $b->{'name'} = $b->{'fullname'}; }
        $b->{'up'} = ($conf{'STARTMODE'} eq 'onboot' ||
                  $conf{'STARTMODE'} eq 'auto');
        local $pfx;
        if ($conf{'IPADDR'} =~ /^(\S+)\/(\d+)$/) {
            $b->{'address'} = $1;
            $pfx = $2;
            }
        else {
            $b->{'address'} = $conf{'IPADDR'};
            }
        $pfx = $conf{'PREFIXLEN'} if (!$pfx);
        if ($pfx) {
            $b->{'netmask'} = &prefix_to_mask($pfx);
            }
        else {
            $b->{'netmask'} = $conf{'NETMASK'};
            }
        $b->{'broadcast'} = $conf{'BROADCAST'};
        $b->{'dhcp'} = ($conf{'BOOTPROTO'} eq 'dhcp');
        $b->{'mtu'} = $conf{'MTU'};
        $b->{'edit'} = ($b->{'name'} !~ /^ppp|irlan/);
        $b->{'index'} = scalar(@rv);
        $b->{'file'} = "$net_scripts_dir/$f";
        push(@rv, $b);
        }
    }
closedir(CONF);
return @rv;
}

# save_interface(&details)
# Create or update a boot-time interface
sub save_interface
{
local(%conf);
if ($_[0]->{'code'} || !$_[0]->{'file'} && $_[0]->{'virtual'} ne '') {
    # An alias interface in the main interface's file
    local $file = $_[0]->{'file'};
    if (!$file) {
        # Get file from parent
        local @boot = &boot_interfaces();
        local ($parent) = grep { $_->{'virtual'} eq '' &&
                    $_->{'name'} eq $_[0]->{'name'} } @boot;
        $file = $parent->{'file'};
        }
    &lock_file($file);
        &read_env_file($file, \%conf);
    if (!$_[0]->{'code'}) {
        # Choose a Unique code
        $_[0]->{'code'} = $_[0]->{'virtual'};
        }
    $conf{'IPADDR_'.$_[0]->{'code'}} = $_[0]->{'address'};
    $conf{'NETMASK_'.$_[0]->{'code'}} = $_[0]->{'netmask'};
    $conf{'LABEL_'.$_[0]->{'code'}} = $_[0]->{'virtual'};
    &write_env_file($file, \%conf);
    &unlock_file($file);
    }
else {
    # Interface has it's own file
    local $name = $_[0]->{'virtual'} ne "" ? $_[0]->{'name'}.":".$_[0]->{'virtual'}
                           : $_[0]->{'name'};
    local $file = $_[0]->{'file'} || "$net_scripts_dir/ifcfg-$name";
    &lock_file($file);
    &read_env_file($file, \%conf);
    $conf{'IPADDR'} = $_[0]->{'address'};
    local($ip1, $ip2, $ip3, $ip4) = split(/\./, $_[0]->{'address'});
    $conf{'NETMASK'} = $_[0]->{'netmask'};
    local($nm1, $nm2, $nm3, $nm4) = split(/\./, $_[0]->{'netmask'});
    if ($_[0]->{'address'} && $_[0]->{'netmask'}) {
        $conf{'NETWORK'} = sprintf "%d.%d.%d.%d",
                    ($ip1 & int($nm1))&0xff,
                    ($ip2 & int($nm2))&0xff,
                    ($ip3 & int($nm3))&0xff,
                    ($ip4 & int($nm4))&0xff;
        }
    else {
        $conf{'NETWORK'} = '';
        }
    delete($conf{'PREFIXLEN'});
    $conf{'BROADCAST'} = $_[0]->{'broadcast'};
    $conf{'STARTMODE'} = $_[0]->{'up'} ? "auto" : "manual";
    $conf{'BOOTPROTO'} = $_[0]->{'dhcp'} ? "dhcp" : "static";
    $conf{'MTU'} = $_[0]->{'mtu'};
    $conf{'UNIQUE'} ||= time();
    &write_env_file($file, \%conf);
    &unlock_file($file);
    }
}

# delete_interface(&details)
# Delete a boot-time interface
sub delete_interface
{
if ($_[0]->{'code'}) {
    # Alias interface in the parent interface's file
    local $file = $_[0]->{'file'};
    &lock_file($file);
        &read_env_file($file, \%conf);
    delete($conf{'IPADDR_'.$_[0]->{'code'}});
    delete($conf{'NETMASK_'.$_[0]->{'code'}});
    delete($conf{'LABEL_'.$_[0]->{'code'}});
    &write_env_file($file, \%conf);
    &unlock_file($file);
    }
else {
    # Has it's own file
    local $name = $_[0]->{'virtual'} ne "" ? $_[0]->{'name'}.":".$_[0]->{'virtual'}
                           : $_[0]->{'name'};
    local $file = $_[0]->{'file'} || "$net_scripts_dir/ifcfg-$name";
    &unlink_logged($file);
    }
}

# can_edit(what, [iface])
# Can some boot-time interface parameter be edited?
sub can_edit
{
if ($_[0] eq "bootp") {
    # SuSE doesn't support bootp
    return 0;
    }
elsif ($_[1] && $_[0] eq "up" && $_[1]->{'virtual'} ne '' && $_[1]->{'file'}) {
    # Virtual interfaces are always activated at boot
    return 0;
    }
return 1;
}

# valid_boot_address(address)
# Is some address valid for a bootup interface
sub valid_boot_address
{
return &check_ipaddress($_[0]);
}

# get_hostname()
sub get_hostname
{
local $hn = &read_file_contents("/etc/HOSTNAME");
$hn =~ s/\r|\n//g;
if ($hn) {
    return $hn;
    }
return &get_system_hostname(1);
}

# save_hostname(name)
sub save_hostname
{
local %conf;
&system_logged("hostname $_[0] >/dev/null 2>&1");
&open_lock_tempfile(HOST, ">/etc/HOSTNAME");
&print_tempfile(HOST, $_[0],"\n");
&close_tempfile(HOST);
undef(@main::get_system_hostname);      # clear cache
}

sub routing_config_files
{
return ( $routes_config, $sysctl_config );
}

# get_routes_config()
# Returns the list of save static routes
sub get_routes_config
{
local (@routes);
&open_readfile(ROUTES, $routes_config);
while(<ROUTES>) {
    s/#.*$//;
    s/\r|\n//g;
    local @r = map { $_ eq '-' ? undef : $_ } split(/\s+/, $_);
    push(@routes, \@r) if (@r);
    }
close(ROUTES);
return @routes;
}

# save_routes_config(&routes)
sub save_routes_config
{
&open_tempfile(ROUTES, ">$routes_config");
foreach $r (@{$_[0]}) {
    &print_tempfile(ROUTES, join(" ",
        $r->[0] || "-",
        $r->[1] || "-",
        $r->[2] || "-",
        $r->[3] || "-"),"\n");
    }
&close_tempfile(ROUTES);
}

# Same as in suse-linux-9.0-lib.pl
sub routing_input
{
local @routes = &get_routes_config();

# show default router and device
local ($def) = grep { $_->[0] eq "default" } @routes;
print &ui_table_row($text{'routes_default'},
        &ui_opt_textbox("gateway", $def->[1], 15, $text{'routes_none'}));

print &ui_table_row($text{'routes_device2'},
        &ui_opt_textbox("gatewaydev", $def->[3], 6, $text{'routes_none'}));

# Forwarding enabled?
&read_env_file($sysctl_config, \%sysctl);
print &ui_table_row($text{'routes_forward'},
        &ui_yesno_radio("forward", $sysctl{'IP_FORWARD'} eq 'yes'));

# show static network routes
my $i = 0;
my @table;
foreach my $r (@routes, [ ]) {
        next if ($r eq $def);
        push(@table, [ &ui_textbox("dev_$i", $r->[3], 6),
                       &ui_textbox("net_$i", $r->[0], 15),
                       &ui_textbox("netmask_$i", $r->[2], 15),
                       &ui_textbox("gw_$i", $r->[1], 15),
                       &ui_textbox("type_$i", $r->[4], 10) ]);
        }
print &ui_table_row($text{'routes_static'},
        &ui_columns_table([ $text{'routes_ifc'}, $text{'routes_net'},
                            $text{'routes_mask'}, $text{'routes_gateway'},
                            $text{'routes_type'} ],
                          undef, \@table, undef, 1));
}

sub parse_routing
{
# Parse route inputs
local (@routes, $r, $i);
if (!$in{'gateway_def'}) {
    &to_ipaddress($in{'gateway'}) ||
        &error(&text('routes_edefault', $in{'gateway'}));
    local @def = ( "default", $in{'gateway'}, undef, undef );
    if (!$in{'gatewaydev_def'}) {
        $in{'gatewaydev'} =~ /^\S+$/ ||
            &error(&text('routes_edevice', $in{'gatewaydev'}));
        $def[3] = $in{'gatewaydev'};
        }
    push(@routes, \@def);
    }
for($i=0; defined($in{"dev_$i"}); $i++) {
    next if (!$in{"net_$i"});
    &check_ipaddress($in{"net_$i"}) ||
        $in{"net_$i"} =~ /^(\S+)\/(\d+)$/ && &check_ipaddress($1) ||
        &error(&text('routes_enet', $in{"net_$i"}));
    $in{"dev_$i"} =~ /^\S*$/ || &error(&text('routes_edevice', $dev));
    !$in{"netmask_$i"} || &check_ipaddress($in{"netmask_$i"}) ||
        &error(&text('routes_emask', $in{"netmask_$i"}));
    !$in{"gw_$i"} || &check_ipaddress($in{"gw_$i"}) ||
        &error(&text('routes_egateway', $in{"gw_$i"}));
    $in{"type_$i"} =~ /^\S*$/ ||
        &error(&text('routes_etype', $in{"type_$i"}));
    push(@routes, [ $in{"net_$i"}, $in{"gw_$i"}, $in{"netmask_$i"},
            $in{"dev_$i"}, $in{"type_$i"} ] );
    }

# Save routes and routing option
&save_routes_config(\@routes);
local $lref = &read_file_lines($sysctl_config);
for($i=0; $i<@$lref; $i++) {
    if ($lref->[$i] =~ /^\s*IP_FORWARD\s*=/) {
        $lref->[$i] = "IP_FORWARD=".($in{'forward'} ? "yes" : "no");
        }
    }
&flush_file_lines();
}

# get_default_gateway()
# Returns the default gateway IP (if one is set) and device (if set) boot time
# settings.
sub get_default_gateway
{
local @routes = &get_routes_config();
local ($def) = grep { $_->[0] eq "default" } @routes;
if ($def) {
    return ( $def->[1], $def->[3] );
    }
else {
    return ( );
    }
}

# set_default_gateway(gateway, device)
# Sets the default gateway to the given IP accessible via the given device,
# in the boot time settings.
sub set_default_gateway
{
local @routes = &get_routes_config();
local ($def) = grep { $_->[0] eq "default" } @routes;
if ($def && $_[0]) {
    $def->[1] = $_[0];
    $def->[3] = $_[1];
    }
elsif ($def && !$_[0]) {
    @routes = grep { $_ ne $def } @routes;
    }
elsif (!$def && $_[0]) {
    splice(@routes, 0, 0, [ "default", $_[0], undef, $_[1] ]);
    }
&save_routes_config(\@routes);
}

sub os_feedback_files
{
opendir(DIR, $net_scripts_dir);
local @f = readdir(DIR);
closedir(DIR);
return ( (map { "$net_scripts_dir/$_" } grep { /^ifcfg-/ } @f),
     $network_config, $static_route_config, "/etc/resolv.conf",
     "/etc/nsswitch.conf", "/etc/HOSTNAME" );
}

# apply_network()
# Apply the interface and routing settings
sub apply_network
{
&system_logged("(cd / ; /etc/init.d/network stop ; /etc/init.d/network start) >/dev/null 2>&1");
}

# supports_address6([&iface])
# Returns 1 if managing IPv6 interfaces is supported
sub supports_address6
{
local ($iface) = @_;
return 0;
}

1;


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