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


Viewing file:     conf_dnssectools.cgi (2.11 KB)      -rwxr-xr-x
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
#!/usr/bin/perl
# Show a form to setup DNSSEC-Tools parameters
use strict;
use warnings;
# Globals
our (%access, %text, %config);

require './bind8-lib.pl';

&ReadParse();
$access{'defaults'} || &error($text{'dt_conf_ecannot'});
&ui_print_header(undef, $text{'dt_conf_title'}, "",
         undef, undef, undef, undef, &restart_links());

print $text{'dt_conf_desc'},"<p>\n";

my $conf = get_dnssectools_config();

print &ui_form_start("save_dnssectools.cgi", "post");
print &ui_table_start($text{'dt_conf_header'}, undef, 2);

my $emailaddrs = find_value("admin-email", $conf);
print &ui_table_row($text{'dt_conf_email'},
        ui_textbox("dt_email", $emailaddrs, 50));

#algorithm; dt_alg
my $algorithm = find_value("algorithm", $conf);
print &ui_table_row($text{'dt_conf_algorithm'},
        ui_textbox("dt_alg", $algorithm, 50));

#ksklength; dt_ksklen
my $ksklength = find_value("ksklength", $conf);
print &ui_table_row($text{'dt_conf_ksklength'},
        ui_textbox("dt_ksklen", $ksklength, 50));

#zsklength; dt_zsklen
my $zsklength = find_value("zsklength", $conf);
print &ui_table_row($text{'dt_conf_zsklength'},
        ui_textbox("dt_zsklen", $zsklength, 50));

#usensec3; dt_nsec3
my $usensec3 = find_value("usensec3", $conf);
print &ui_table_row($text{'dt_conf_nsec3'},
        ui_textbox("dt_nsec3", $usensec3, 50));


#endtime; dt_endtime
my $endtime = find_value("endtime", $conf);
print &ui_table_row($text{'dt_conf_endtime'},
        ui_textbox("dt_endtime", $endtime, 50));

print &ui_table_hr();

#ksklife; dt_ksklife
my $ksklife = find_value("ksklife", $conf);
print &ui_table_row($text{'dt_conf_ksklife'},
        ui_textbox("dt_ksklife", $ksklife, 50)." ".
        $text{'dnssec_secs'});

#zsklife; dt_zsklife
my $zsklife = find_value("zsklife", $conf);
print &ui_table_row($text{'dt_conf_zsklife'},
        ui_textbox("dt_zsklife", $zsklife, 50)." ".
        $text{'dnssec_secs'});

print &ui_table_hr();

# Interval in days
print &ui_table_row($text{'dnssec_period'},
    &ui_textbox("period", $config{'dnssec_period'} || 21, 5)." ".
    $text{'dnssec_days'});

print &ui_table_hr();
print &ui_table_end();
print &ui_form_end([ [ undef, $text{'save'} ] ]);

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