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 /
cluster-copy /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
1.02
KB
-rw-r--r--
cluster-copy-lib.pl
6.67
KB
-rwxr-xr-x
config
12
B
-rw-r--r--
config.info
83
B
-rw-r--r--
config.info.ca
104
B
-rw-r--r--
config.info.ca.UTF-8
107
B
-rw-r--r--
config.info.de
84
B
-rw-r--r--
config.info.de.UTF-8
84
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.ms_MY
86
B
-rw-r--r--
config.info.ms_MY.UTF-8
86
B
-rw-r--r--
config.info.nl
93
B
-rw-r--r--
config.info.nl.UTF-8
93
B
-rw-r--r--
config.info.no
103
B
-rw-r--r--
config.info.no.UTF-8
103
B
-rw-r--r--
config.info.pl
88
B
-rw-r--r--
config.info.pl.UTF-8
90
B
-rw-r--r--
copy.pl
1.8
KB
-rwxr-xr-x
delete.cgi
507
B
-rwxr-xr-x
edit.cgi
2.67
KB
-rwxr-xr-x
exec.cgi
2.02
KB
-rwxr-xr-x
index.cgi
1.89
KB
-rwxr-xr-x
log_parser.pl
704
B
-rwxr-xr-x
module.info
172
B
-rw-r--r--
module.info.ca
151
B
-rw-r--r--
module.info.ca.UTF-8
168
B
-rw-r--r--
module.info.cz
37
B
-rw-r--r--
module.info.cz.UTF-8
47
B
-rw-r--r--
module.info.de
126
B
-rw-r--r--
module.info.de.UTF-8
138
B
-rw-r--r--
module.info.es
36
B
-rw-r--r--
module.info.es.UTF-8
42
B
-rw-r--r--
module.info.fr
40
B
-rw-r--r--
module.info.fr.UTF-8
46
B
-rw-r--r--
module.info.hu
32
B
-rw-r--r--
module.info.hu.UTF-8
41
B
-rw-r--r--
module.info.ms_MY
133
B
-rw-r--r--
module.info.ms_MY.UTF-8
145
B
-rw-r--r--
module.info.nl
42
B
-rw-r--r--
module.info.nl.UTF-8
48
B
-rw-r--r--
module.info.no
30
B
-rw-r--r--
module.info.no.UTF-8
36
B
-rw-r--r--
module.info.pl
117
B
-rw-r--r--
module.info.pl.UTF-8
132
B
-rw-r--r--
save.cgi
2.1
KB
-rwxr-xr-x
uninstall.pl
230
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : exec.cgi
#!/usr/bin/perl # exec.cgi # Run the cron job on all configured servers require './cluster-copy-lib.pl'; &ReadParse(); &ui_print_unbuffered_header(undef, $text{'exec_title'}, ""); # Run on all servers and show output $copy = &get_copy($in{'id'}); @files = split(/\t+/, $copy->{'files'}); $under = $copy->{'dest'} eq "/" ? "" : &text('exec_under', "<tt>$copy->{'dest'}</tt>"); if (@files > 3) { print &text('exec_files1', scalar(@files), $under),"<p>\n"; } else { print &text('exec_files2', join(", ", map { "<tt>$_</tt>" } @files), $under),"<p>\n"; } @run = &run_cluster_job($copy, \&callback); if (!@run) { print "$text{'exec_nohosts'}<p>\n"; } &webmin_log("exec", "copy", undef, $copy); &ui_print_footer("edit.cgi?id=$in{'id'}", $text{'edit_return'}, "", $text{'index_return'}); # callback(error, &server, message, dirs, command-output, before-output) sub callback { local $d = $_[1]->{'desc'} || $_[1]->{'host'}; if (!$_[0]) { # Failed - show error print "<b>",&text('exec_failed', $d, $_[2]),"</b><p>\n"; } else { if ($_[6]) { # Show before command output print "<b>",&text('exec_before', $d),"</b><br>\n"; print "<tt>",join("<br>", &mailboxes::wrap_lines($_[6], 80)), "</tt><p>\n"; } if (@{$_[4]}) { # Show created directories print "<b>",&text('exec_made', $d),"</b><br><ul>\n"; foreach $f (@{$_[4]}) { print "<tt>$f</tt><br>\n"; } print "</ul><p>\n"; } if (!@{$_[2]}) { # Nothing copied print "<b>",&text('exec_nothing', $d),"</b><p>\n"; } else { # Show copied files print "<b>",&text('exec_success', $d),"</b><br><ul>\n"; foreach $f (@{$_[2]}) { print "<tt>$f</tt><br>\n"; } print "</ul><p>\n"; } if (@{$_[3]}) { # Show failed files print "<b>",&text('exec_not', $d),"</b><br><ul>\n"; foreach $f (@{$_[3]}) { print "<tt>$f->[0]</tt> : $f->[1]<br>\n"; } print "</ul><p>\n"; } if ($_[5]) { # Show after command output print "<b>",&text('exec_cmd', $d),"</b><br>\n"; print "<tt>",join("<br>", &mailboxes::wrap_lines($_[5], 80)), "</tt><p>\n"; } } }
Close