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 : view.cgi
#!/usr/bin/perl # Show details of one package and available updates require './package-updates-lib.pl'; &ui_print_header(undef, $text{'view_title'}, ""); &ReadParse(); # Get the package @avail = &list_for_mode($in{'mode'}, 0); ($a) = grep { $_->{'name'} eq $in{'name'} && $_->{'system'} eq $in{'system'} } @avail; @current = &list_current(0); ($c) = grep { $_->{'name'} eq $in{'name'} && $_->{'system'} eq $in{'system'} } @current; $p = $a || $c; print &ui_form_start("save_view.cgi"); print &ui_hidden("name", $p->{'name'}); print &ui_hidden("system", $p->{'system'}); print &ui_hidden("version", $p->{'version'}); print &ui_hidden("mode", $in{'mode'}); print &ui_table_start($text{'view_header'}, undef, 2); # Package name and type print &ui_table_row($text{'view_name'}, $p->{'name'}); print &ui_table_row($text{'view_system'}, $text{'system_'.$p->{'system'}} || uc($p->{'system'})); print &ui_table_row($text{'view_desc'}, $p->{'desc'}); # Current state print &ui_table_row($text{'view_state'}, $a && !$c ? "<font color=#00aa00>$text{'index_caninstall'}</font>" : !$a && $c ? "<font color=#ffaa00>". &text('index_noupdate', $c->{'version'})."</font>" : &compare_versions($a, $c) > 0 ? "<font color=#00aa00>". &text('index_new', $a->{'version'})."</font>" : &text('index_ok', $c->{'version'})); # Version(s) available if ($c) { print &ui_table_row($text{'view_cversion'}, ($c->{'epoch'} ? $c->{'epoch'}.":" : "").$c->{'version'}); } if ($a) { print &ui_table_row($text{'view_aversion'}, ($a->{'epoch'} ? $a->{'epoch'}.":" : "").$a->{'version'}); } # Source, if available if ($a->{'source'}) { print &ui_table_row($text{'view_source'}, ucfirst($a->{'source'})); } # Change log, if possible if ($a) { $cl = &get_changelog($a); if ($cl) { print &ui_table_row($text{'view_changelog'}, "<pre>".&html_escape($cl)."</pre>"); } } print &ui_table_end(); # Buttons to update / manage @buts = ( ); if ($c && &foreign_available("software") && $c->{'software'}) { push(@buts, [ "software", $text{'view_software'} ]); } if ($a && $c && &compare_versions($a, $c) > 0) { push(@buts, [ "update", $text{'view_update'} ]); } elsif ($a && !$c) { push(@buts, [ "update", $text{'view_install'} ]); } print &ui_form_end(\@buts); &ui_print_footer("index.cgi?mode=$in{'mode'}&search=". &urlize($in{'search'}), $text{'index_return'});
Close