Update access vectors.
This commit is contained in:
parent
b4e7ad65ab
commit
6f76afe44e
|
@ -153,6 +153,8 @@ inherits file
|
||||||
search
|
search
|
||||||
rmdir
|
rmdir
|
||||||
open
|
open
|
||||||
|
audit_access
|
||||||
|
execmod
|
||||||
}
|
}
|
||||||
|
|
||||||
class file
|
class file
|
||||||
|
@ -162,10 +164,16 @@ inherits file
|
||||||
entrypoint
|
entrypoint
|
||||||
execmod
|
execmod
|
||||||
open
|
open
|
||||||
|
audit_access
|
||||||
}
|
}
|
||||||
|
|
||||||
class lnk_file
|
class lnk_file
|
||||||
inherits file
|
inherits file
|
||||||
|
{
|
||||||
|
open
|
||||||
|
audit_access
|
||||||
|
execmod
|
||||||
|
}
|
||||||
|
|
||||||
class chr_file
|
class chr_file
|
||||||
inherits file
|
inherits file
|
||||||
|
@ -174,24 +182,31 @@ inherits file
|
||||||
entrypoint
|
entrypoint
|
||||||
execmod
|
execmod
|
||||||
open
|
open
|
||||||
|
audit_access
|
||||||
}
|
}
|
||||||
|
|
||||||
class blk_file
|
class blk_file
|
||||||
inherits file
|
inherits file
|
||||||
{
|
{
|
||||||
open
|
open
|
||||||
|
audit_access
|
||||||
|
execmod
|
||||||
}
|
}
|
||||||
|
|
||||||
class sock_file
|
class sock_file
|
||||||
inherits file
|
inherits file
|
||||||
{
|
{
|
||||||
open
|
open
|
||||||
|
audit_access
|
||||||
|
execmod
|
||||||
}
|
}
|
||||||
|
|
||||||
class fifo_file
|
class fifo_file
|
||||||
inherits file
|
inherits file
|
||||||
{
|
{
|
||||||
open
|
open
|
||||||
|
audit_access
|
||||||
|
execmod
|
||||||
}
|
}
|
||||||
|
|
||||||
class fd
|
class fd
|
||||||
|
@ -363,6 +378,7 @@ class security
|
||||||
setbool
|
setbool
|
||||||
setsecparam
|
setsecparam
|
||||||
setcheckreqprot
|
setcheckreqprot
|
||||||
|
read_policy
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue