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


Viewing file:     list_refresh.cgi (1.58 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# list_refresh.cgi
# Display all refresh patterns

use strict;
use warnings;
our (%text, %in, %access, $squid_version, %config);
require './squid-lib.pl';
$access{'refresh'} || &error($text{'refresh_ecannot'});
&ui_print_header(undef, $text{'refresh_title'}, "", "list_refresh", 0, 0, 0,
         &restart_button());
my $conf = &get_config();

my @refresh = &find_config("refresh_pattern", $conf);
my @links = ( &select_all_link("d"),
          &select_invert_link("d"),
          &ui_link("edit_refresh.cgi?new=1", $text{'refresh_add'}) );
if (@refresh) {
    print &ui_form_start("delete_refreshes.cgi", "post");
    my @tds = ( "width=5", undef, undef, undef, undef, "width=32" );
    print &ui_links_row(\@links);
    print &ui_columns_start([ "",
                  $text{'refresh_re'},
                  $text{'refresh_min'},
                  $text{'refresh_pc'},
                  $text{'refresh_max'},
                  $text{'eacl_move'} ], 100, 0, \@tds);
    my $hc = 0;
    foreach my $h (@refresh) {
        my @v = @{$h->{'values'}};
        if ($v[0] eq "-i") {
            shift(@v);
            }
        my @cols;
        push(@cols, &ui_link("edit_refresh.cgi?index=$h->{'index'}",
                     $v[0]));
        push(@cols, @v[1..3]);
        my $mover = &ui_up_down_arrows(
            "move_refresh.cgi?$hc+-1",
            "move_refresh.cgi?$hc+1",
            $hc != 0,
            $hc != @refresh-1);
        push(@cols, $mover);
        print &ui_checked_columns_row(\@cols, \@tds, "d",$h->{'index'});
        $hc++;
        }
    print &ui_columns_end();
    print &ui_links_row(\@links);
    print &ui_form_end([ [ "delete", $text{'refresh_delete'} ] ]);
    }
else {
    print "<p>$text{'refresh_none'}<p>\n";
    print &ui_links_row([ $links[2] ]);
    }

&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.0033 ]--