!C99Shell v. 1.0 pre-release build #16!

Software: Apache/2.0.54 (Fedora). PHP/5.0.4 

uname -a: Linux mina-info.me 2.6.17-1.2142_FC4smp #1 SMP Tue Jul 11 22:57:02 EDT 2006 i686 

uid=48(apache) gid=48(apache) groups=48(apache)
context=system_u:system_r:httpd_sys_script_t
 

Safe-mode: OFF (not secure)

/usr/bin/X11/./../include/../../libexec/webmin/squid/   drwxr-xr-x
Free 5.17 GB of 27.03 GB (19.11%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     edit_iptables.cgi (1.86 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show form for adding or removing Squid transparent proxy IPtables rule

use strict;
use warnings;
our (%text, %in, %access, $squid_version, %config);
require './squid-lib.pl';
&ui_print_header(undef, $text{'iptables_title'}, "");
&foreign_require("firewall", "firewall-lib.pl");
&foreign_require("net", "net-lib.pl");

# Is the Linux firewall module setup OK?
my $inst = &foreign_installed("firewall", 1);
if ($inst == 0) {
    # Not installed at all
    &ui_print_endpage(&text('iptables_inst0', "../firewall/"));
    }
elsif ($inst == 1) {
    # Not properly setup
    &ui_print_endpage(&text('iptables_inst1', "../firewall/"));
    }

# See if a rule redirecting to the port exists
my $port = &get_squid_port();
my @tables = &firewall::get_iptables_save();
my ($nat) = grep { $_->{'name'} eq 'nat'} @tables;
my $rule;
foreach my $r (@{$nat->{'rules'}}) {
    if ($r->{'chain'} eq 'PREROUTING' &&
        $r->{'j'}->[1] eq 'REDIRECT' &&
        $r->{'dport'}->[1] == 80 &&
        $r->{'to-ports'}->[1] == $port) {
        # Got one!
        $rule = $r;
        }
    }

# Show enabled/disable rule form
print &text('iptables_desc', 80, $port, "../firewall/"),"<p>\n";
print &ui_form_start("save_iptables.cgi", "post");
print &ui_hidden("rule", $rule->{'index'}) if ($rule);
print &ui_table_start(undef, undef, 2);

print &ui_table_row(undef,
    &ui_radio_table("enabled", !$rule ? 0 : $rule && $rule->{'s'} ? 1 :
                   $rule && $rule->{'i'} ? 2 : 0,
      [ [ 0, $text{'iptables_disabled'} ],
        [ 1, $text{'iptables_enabled3'},
          &ui_textbox("net", $rule ? $rule->{'s'}->[1] : "", 20) ],
        [ 2, $text{'iptables_enabled4'},
          &net::interface_choice("iface", $rule ? $rule->{'i'}->[1] : "") ]
      ]), 2);

print &ui_table_row(undef,
    &ui_checkbox("apply", 1, $text{'iptables_apply'}, 1), 2);

print &ui_table_end();
print &ui_form_end([ [ 'save', $text{'save'} ] ], "100%");

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


:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ Read-Only ]

:: Make Dir ::
 
[ Read-Only ]
:: Make File ::
 
[ Read-Only ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 1.0 pre-release build #16 powered by Captain Crunch Security Team | http://ccteam.ru | Generation time: 0.0038 ]--