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-software /
[ HOME SHELL ]
Name
Size
Permission
Action
help
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
1.01
KB
-rw-r--r--
add.cgi
904
B
-rwxr-xr-x
close.cgi
272
B
-rwxr-xr-x
closeall.cgi
179
B
-rwxr-xr-x
cluster-software-lib.pl
9.51
KB
-rwxr-xr-x
compare.cgi
1.81
KB
-rwxr-xr-x
compare_form.cgi
1.13
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
73
B
-rw-r--r--
config.info.cz.UTF-8
82
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
106
B
-rw-r--r--
config.info.es.UTF-8
106
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.ms_MY
131
B
-rw-r--r--
config.info.ms_MY.UTF-8
131
B
-rw-r--r--
config.info.nl
130
B
-rw-r--r--
config.info.nl.UTF-8
130
B
-rw-r--r--
config.info.no
133
B
-rw-r--r--
config.info.no.UTF-8
133
B
-rw-r--r--
config.info.pl
118
B
-rw-r--r--
config.info.pl.UTF-8
121
B
-rw-r--r--
defaultacl
6
B
-rw-r--r--
delete_host.cgi
254
B
-rwxr-xr-x
delete_pack.cgi
3.15
KB
-rwxr-xr-x
delete_packs.cgi
2.86
KB
-rwxr-xr-x
do_install.cgi
7.11
KB
-rwxr-xr-x
do_install_serial.cgi
3.55
KB
-rwxr-xr-x
edit_host.cgi
3.84
KB
-rwxr-xr-x
edit_pack.cgi
3.33
KB
-rwxr-xr-x
index.cgi
4.87
KB
-rwxr-xr-x
install_pack.cgi
4.82
KB
-rwxr-xr-x
list_pack.cgi
2.28
KB
-rwxr-xr-x
module.info
427
B
-rw-r--r--
module.info.ca
151
B
-rw-r--r--
module.info.ca.UTF-8
167
B
-rw-r--r--
module.info.cz
37
B
-rw-r--r--
module.info.cz.UTF-8
46
B
-rw-r--r--
module.info.de
137
B
-rw-r--r--
module.info.de.UTF-8
149
B
-rw-r--r--
module.info.es
39
B
-rw-r--r--
module.info.es.UTF-8
45
B
-rw-r--r--
module.info.fr
41
B
-rw-r--r--
module.info.fr.UTF-8
47
B
-rw-r--r--
module.info.hu
33
B
-rw-r--r--
module.info.hu.UTF-8
39
B
-rw-r--r--
module.info.ms_MY
125
B
-rw-r--r--
module.info.ms_MY.UTF-8
137
B
-rw-r--r--
module.info.nl
35
B
-rw-r--r--
module.info.nl.UTF-8
41
B
-rw-r--r--
module.info.no
35
B
-rw-r--r--
module.info.no.UTF-8
41
B
-rw-r--r--
module.info.pl
129
B
-rw-r--r--
module.info.pl.UTF-8
144
B
-rw-r--r--
open.cgi
250
B
-rwxr-xr-x
openall.cgi
427
B
-rwxr-xr-x
refresh.cgi
1.61
KB
-rwxr-xr-x
search.cgi
1.92
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : do_install_serial.cgi
#!/usr/bin/perl # do_install.cgi # Install some package on all hosts, in parallel. If the package was # downloaded from a URL, have the hosts do the same - otherwise, transfer # it to each. require './cluster-software-lib.pl'; &ReadParse(); @packages = &foreign_call("software", "file_packages", $in{'file'}); foreach $p (@packages) { local ($n, $d) = split(/\s+/, $p, 2); push(@names, $n); push(@descs, $d); } -r $in{'file'} || &error($text{'do_edeleted'}); &ui_print_header(undef, $text{'do_title'}, ""); print "<b>",&text('do_header', join(" ", @names)),"</b><p>\n"; @hosts = &list_software_hosts(); @servers = &list_servers(); foreach $h (@hosts) { # Check if already installed local ($s) = grep { $_->{'id'} == $h->{'id'} } @servers; local $d = $s->{'desc'} ? $s->{'desc'} : $s->{'host'}; local ($a) = grep { &indexof($_->{'name'}, @names) >= 0 } @{$h->{'packages'}}; #if ($a) { # print &text('do_already', $d),"<br>\n"; # next; # } &remote_foreign_require($s->{'host'}, "software", "software-lib.pl"); local $rfile; local $need_unlink = 1; if (!$s->{'id'}) { # This host, so we already have the file $rfile = $in{'file'}; $need_unlink = 0; } elsif ($in{'source'} == 2 && $in{'down'}) { # Ask the remote server to download the file $rfile = &remote_eval($s->{'host'}, "software", '&tempname()'); if ($in{'ftpfile'}) { &remote_foreign_call($s->{'host'}, "software", "ftp_download", $in{'host'}, $in{'ftpfile'}, $rfile); } else { &remote_foreign_call($s->{'host'}, "software", "http_download", $in{'host'}, $in{'port'}, $in{'page'}, $rfile); } } else { # Need to copy the file across :( $rfile = &remote_write($s->{'host'}, $in{'file'}); } # Do the install .. for($i=0; $i<@names; $i++) { local $error = &remote_foreign_call($s->{'host'}, "software", "install_package", $rfile, $names[$i], \%in); if ($error) { print &text('do_failed', $d, $error),"<br>\n"; } else { # Success .. get the package details and add to list print &text('do_success', $d),"<br>\n"; if (!$pinfo[$i]) { $pinfo[$i] = [ &remote_foreign_call($s->{'host'}, "software", "package_info", $names[$i]) ]; } if (&indexof($names[$i], @{$h->{'packages'}}) < 0) { push(@{$h->{'packages'}}, { 'name' => $names[$i], 'desc' => $descs[$i], 'class' => $pinfo[$i]->[1] }); &save_software_host($h); } } } &remote_eval($s->{'host'}, "software", "unlink('$rfile')") if ($need_unlink); } unlink($in{'file'}) if ($in{'need_unlink'}); print "<p><b>$text{'do_done'}</b><p>\n"; for($i=0; $i<@names; $i++) { next if (!$pinfo[$i]); print "<table border width=100%>\n"; print "<tr $tb> <td><b>$text{'do_details'}</b></td> </tr>\n"; print "<tr $cb> <td><table width=100%>\n"; print "<tr> <td valign=top width=20%><b>$text{'do_desc'}</b></td>\n"; print "<td colspan=3><font size=+1><pre>$pinfo[$i]->[2]</pre></font></td> </tr>\n"; print "<tr> <td width=20%><b>$text{'do_pack'}</b></td> <td>$pinfo[$i]->[0]</td>\n"; print "<td width=20%><b>$text{'do_class'}</b></td> <td>", $pinfo[$i]->[1] ? $pinfo[$i]->[1] : $text{'do_none'},"</td> </tr>\n"; print "<tr> <td width=20%><b>$text{'do_ver'}</b></td> <td>$pinfo[$i]->[4]</td>\n"; print "<td width=20%><b>$text{'do_vend'}</b></td> <td>$pinfo[$i]->[5]</td> </tr>\n"; print "<tr> <td width=20%><b>$text{'do_arch'}</b></td> <td>$pinfo[$i]->[3]</td>\n"; print "<td width=20%><b>$text{'do_inst'}</b></td> <td>$pinfo[$i]->[6]</td> </tr>\n"; print "</table></td></tr></table><p>\n"; } &remote_finished(); &ui_print_footer("", $text{'index_return'});
Close