forked from OwlCyberDefense/refpolicy-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhowl.if
50 lines (44 loc) · 984 Bytes
/
howl.if
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
## <summary>Port of Apple Rendezvous multicast DNS.</summary>
########################################
## <summary>
## Send generic signals to howl.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
#
interface(`howl_signal',`
gen_require(`
type howl_t;
')
allow $1 howl_t:process signal;
')
########################################
## <summary>
## All of the rules required to
## administrate an howl environment.
## </summary>
## <param name="domain">
## <summary>
## Domain allowed access.
## </summary>
## </param>
## <param name="role">
## <summary>
## Role allowed access.
## </summary>
## </param>
## <rolecap/>
#
interface(`howl_admin',`
gen_require(`
type howl_t, howl_initrc_exec_t, howl_var_run_t;
')
allow $1 howl_t:process { ptrace signal_perms };
ps_process_pattern($1, howl_t)
init_startstop_service($1, $2, howl_t, howl_initrc_exec_t)
files_search_pids($1)
admin_pattern($1, howl_var_run_t)
')