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


Viewing file:     change_web.cgi (1.52 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Save webserver options

require './webmin-lib.pl';
&ReadParse();
&error_setup($text{'web_err'});
&get_miniserv_config(\%miniserv);

# Save expires
if ($in{'expires_def'}) {
    delete($miniserv{'expires'});
    }
else {
    $in{'expires'} =~ /^\d+$/ ||
        &error($text{'web_eexpires'});
    $miniserv{'expires'} = $in{'expires'};
    }

# Save per-path expires
for(my $i=0; defined($p = $in{"expirespath_$i"}); $i++) {
    $t = $in{"expirestime_$i"};
    next if ($p !~ /\S/);
    $t =~ /^\d+$/ || &error(&text('web_eexpires2', $i+1));
    push(@expires_paths, [ $p, $t ]);
    }
$miniserv{'expires_paths'} = join("\t", map { $_->[0]."=".$_->[1] }
                        @expires_paths);

# Save stack trace option
$gconfig{'error_stack'} = $in{'stack'};

# Save showing of stderr
$miniserv{'noshowstderr'} = !$in{'showstderr'};

if (!$miniserv{'session'}) {
    # Save password pass option
    $miniserv{'pass_password'} = $in{'pass'};
    }

# Save gzip option
if ($in{'gzip'} == 1) {
    eval "use Compress::Zlib";
    $@ && &error(&text('advanced_egzip', '<tt>Compress::Zlib</tt>'));
    }
$miniserv{'gzip'} = $in{'gzip'};

# Save redirect type
$gconfig{'relative_redir'} = $in{'redir'};

# Save directory list option
$miniserv{'nolistdir'} = !$in{'listdir'};

# Save global config
&lock_file("$config_directory/config");
&write_file("$config_directory/config", \%gconfig);
&unlock_file("$config_directory/config");

# Save miniserv config
&lock_file($ENV{'MINISERV_CONFIG'});
&put_miniserv_config(\%miniserv);
&unlock_file($ENV{'MINISERV_CONFIG'});

&show_restart_page();
&webmin_log("web");


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