!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 3.8 GB of 27.03 GB (14.05%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     save_ipkey.cgi (1.31 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Save, create or delete an IP-specific SSL key

require './webmin-lib.pl';
&ReadParse();
&get_miniserv_config(\%miniserv);
@ipkeys = &get_ipkeys(\%miniserv);
if (!$in{'new'}) {
    $ipkey = $ipkeys[$in{'idx'}];
    }
else {
    $ipkey = { };
    }

if ($in{'delete'}) {
    # Just remove this entry
    splice(@ipkeys, $in{'idx'}, 1);
    }
else {
    # Validate inputs
    &error_setup($text{'ipkey_err'});
    @ips = split(/\s+/, $in{'ips'});
    foreach $i (@ips) {
        &check_ipaddress($i) || &check_ip6address($i) ||
            $i =~ /^(\*\.)?[a-z0-9\.\_\-]+$/i ||
            &error(&text('ipkey_eip2', $i));
        }
    @ips || &error(&text('ipkey_eips'));
    $ipkey->{'ips'} = \@ips;
    &validate_key_cert($in{'key'}, $in{'cert_def'} ? undef : $in{'cert'});
    $ipkey->{'key'} = $in{'key'};
    $ipkey->{'cert'} = $in{'cert_def'} ? undef : $in{'cert'};
    if ($in{'extracas_mode'} == 0) {
        delete($ipkey->{'extracas'});
        }
    elsif ($in{'extracas_mode'} == 2) {
        $ipkey->{'extracas'} = 'none';
        }
    else {
        @files = split(/\s+/, $in{'extracas'});
        @files || &error($text{'ipkey_eextracas'});
        foreach $f (@files) {
            -r $f || &error(&text('ipkey_eextraca', $f));
            }
        $ipkey->{'extracas'} = join(' ', @files);
        }

    # Save or add
    if ($in{'new'}) {
        push(@ipkeys, $ipkey);
        }
    }

&save_ipkeys(\%miniserv, \@ipkeys);
&put_miniserv_config(\%miniserv);
&show_restart_page();


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