| Server IP : 182.53.201.61 / Your IP : 216.73.217.175 Web Server : Apache/2.2.15 (Fedora) System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686 User : apache ( 48) PHP Version : 5.3.3 Disable Function : NONE MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/webmin/shorewall/ |
Upload File : |
#!/usr/bin/perl
# Display the contents of a table file
require './shorewall-lib.pl';
&ReadParse();
&get_clean_table_name(\%in);
&can_access($in{'table'}) || &error($text{'list_ecannot'});
&ui_print_header(undef, $text{$in{'tableclean'}."_title"}, "");
$file = "$config{'config_dir'}/$in{'table'}";
$in{'table'} =~ /\.\./ && &error($text{'manual_efile'});
print &text('manual_desc', "<tt>$file</tt>"),"<p>\n";
print "<form action=manual_save.cgi method=post enctype=multipart/form-data>\n";
print &ui_hidden("table", $in{'table'});
print "<textarea name=data rows=20 cols=80>";
open(FILE, $file);
while(<FILE>) {
print &html_escape($_);
}
close(FILE);
print "</textarea><br>\n";
print "<input type=submit value='$text{'save'}'>\n";
print "<input type=reset value='$text{'manual_reset'}'>\n";
print "</form>\n";
&ui_print_footer("list.cgi?table=$in{'table'}", $text{$in{'tableclean'}."_return"});