!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 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:     save_logs.cgi (3.09 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# save_logs.cgi
# Save logging options

use strict;
use warnings;
our (%text, %in, %access, $squid_version, %config);
require './squid-lib.pl';
$access{'logging'} || &error($text{'elogs_ecannot'});
&ReadParse();
&lock_file($config{'squid_conf'});
my $conf = &get_config();
&error_setup($text{'slogs_ftslo'});

if ($squid_version < 2.6) {
    # Just a single logging directive
    &save_opt("cache_access_log", \&check_file, $conf);
    }
else {
    # Supports definition of log formats and files
    my @logformat;
    for(my $i=0; defined(my $fname = $in{"fname_$i"}); $i++) {
        my $ffmt = $in{"ffmt_$i"};
        next if (!$fname);
        $fname =~ /^\S+$/ || &error(&text('slogs_efname', $i+1));
        $ffmt =~ /\S/ || &error(&text('slogs_effmt', $i+1));
        push(@logformat, { 'name' => 'logformat',
                   'values' => [ $fname, $ffmt ] });
        }
    &save_directive($conf, "logformat", \@logformat);

    # Save log files
    my @access;
    for(my $i=0; defined(my $afile = $in{"afile_$i"}); $i++) {
        my $adef = $in{"afile_def_$i"};
        next if ($adef == 1);
        $adef == 2 || $afile =~ /^\/\S+$/ ||
            &error(&text('slogs_eafile', $i+1));
        my $afmt = $in{"afmt_$i"};
        my $aacls = $in{"aacls_$i"};
        push(@access,
          { 'name' => 'access_log',
            'values' => [ $adef == 2 ? "none" : $afile,
                  $afmt ? ( $afmt ) :
                   $aacls ? ( "squid" ) : ( ),
                  split(/\s+/, $aacls) ] } );
        }
    &save_directive($conf, "access_log", \@access);
    }

&save_opt("cache_log", \&check_file, $conf);
if ($in{'cache_store_log_def'} == 2) {
    &save_directive($conf, "cache_store_log",
            [ { 'name' => 'cache_store_log',
                'values' => [ "none" ] } ]);
    }
else {
    &save_opt("cache_store_log", \&check_file, $conf);
    }
&save_opt("cache_swap_log", \&check_file, $conf);
&save_choice("emulate_httpd_log", "off", $conf);
&save_choice("log_mime_hdrs", "off", $conf);
&save_opt("useragent_log", \&check_file, $conf);
&save_opt("pid_filename", \&check_pid_file, $conf);
if ($squid_version >= 2.2) {
    if (!$in{'complex_ident'}) {
        my @ila = split(/\0/, $in{'ident_lookup_access'});
        &save_directive($conf, "ident_lookup_access", !@ila ? [ ] :
                [ { 'name' => 'ident_lookup_access',
                    'values' => [ 'allow', @ila ] } ]);
        }
    &save_opt_time("ident_timeout", $conf);
    }
else {
    &save_choice("ident_lookup", "off", $conf);
    }
&save_choice("log_fqdn", "off", $conf);
&save_opt("client_netmask", \&check_netmask, $conf);
&save_opt("debug_options", \&check_debug, $conf);
if ($squid_version >= 2) {
    &save_opt("mime_table", \&check_file, $conf);
    }

&flush_file_lines();
&unlock_file($config{'squid_conf'});
&webmin_log("logs", undef, undef, \%in);
&redirect("");

sub check_pid_file
{
my ($file) = @_;
return $file eq 'none' ? undef : &check_file($file);
}

sub check_file
{
my ($file) = @_;
$file =~ /^\// || return &text('slogs_emsg1', $file);
$file =~ /^(\S*\/)([^\/\s]+)$/ || return &text('slogs_emsg2', $file);
(-d $1) || return &text('slogs_emsg3', $1);
return undef;
}

sub check_netmask
{
my ($value) = @_;
&check_ipaddress($value) || return &text('slogs_emsg4', $value);
return undef;
}

sub check_debug
{
my ($value) = @_;
$value =~ /\S+/ || return &text('slogs_emsg5', $value);
return undef;
}


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