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 : log_parser.pl
# log_parser.pl # Functions for parsing this module's logs do 'cluster-cron-lib.pl'; # parse_webmin_log(user, script, action, type, object, ¶ms) # Converts logged information from this module into human-readable form sub parse_webmin_log { local ($user, $script, $action, $type, $object, $p, $long) = @_; if ($action eq 'exec') { local @server = split(/\0/, $p->{'run'}); if ($long) { return &text('log_run_l', "<tt>$p->{'cluster_command'}</tt>", join(", ", map { $_ ? "<tt>$_</tt>" : $text{'index_this'} } @server)); } else { return &text('log_run', "<tt>$p->{'cluster_command'}</tt>", scalar(@server)); } } elsif ($action eq 'deletes') { return &text('log_deletes', $object); } else { local $l = $long ? "_l" : ""; return &text("log_${action}${l}", "<tt>$object</tt>", "<tt>".&html_escape($p->{'cluster_command'})."</tt>"); } }
Close