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


Viewing file:     index.cgi (2.04 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show icons for jails, filter, etc

use strict;
use warnings;
require './fail2ban-lib.pl';
our (%in, %text, %config, $module_name, $module_root_directory);

my $ver = &get_fail2ban_version();
&ui_print_header($ver ? &text('index_ver', $ver) : undef,
         $text{'index_title'}, "", "intro", 1, 1, 0,
         &help_search_link("fail2ban", "google", "man"));

# Check if installed
my $err = &check_fail2ban();
if ($err) {
    print &text('index_echeck', $err, "../config.cgi?$module_name"),"<p>\n";

    &foreign_require("software");
    my $lnk = &software::missing_install_link("fail2ban",
        $text{'index_fail2ban'}, "../$module_name/",
        $text{'index_header'});
    print $lnk,"<p>\n" if ($lnk);

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

# Show category icons
my @links = ( "list_filters.cgi", "list_actions.cgi",
          "list_jails.cgi", "edit_config.cgi",
          "edit_manual.cgi", );
my @titles = ( $text{'filters_title'}, $text{'actions_title'},
           $text{'jails_title'}, $text{'config_title'},
           $text{'manual_title'}, );
my @icons = ( "images/filters.gif", "images/actions.gif",
          "images/jails.gif", "images/config.gif",
          "images/manual.gif", );
&icons_table(\@links, \@titles, \@icons, 5);

# Show start / stop buttons
print &ui_hr();
print &ui_buttons_start();

my $pid = &is_fail2ban_running();
if ($pid) {
    print &ui_buttons_row("restart.cgi", $text{'index_restart'},
                  $text{'index_restartdesc'});
    print &ui_buttons_row("stop.cgi", $text{'index_stop'},
                  $text{'index_stopdesc'});
    }
else {
    print &ui_buttons_row("start.cgi", $text{'index_start'},
                  $text{'index_startdesc'});
    }

# Enable at boot
if ($config{'init_script'}) {
    &foreign_require("init");
    my @inits = split(/\s+/, $config{'init_script'});
    my $st = &init::action_status($inits[0]);
    print &ui_buttons_row(
        "atboot.cgi",
        $text{'index_atboot'},
        $text{'index_atbootdesc'},
        undef,
        &ui_radio("boot", $st == 2 ? 1 : 0,
              [ [ 1, $text{'yes'} ], [ 0, $text{'no'} ] ]));
    }

print &ui_buttons_end();

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

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