-
Notifications
You must be signed in to change notification settings - Fork 7
/
cyberark-epm-misconfigurations.json
50 lines (50 loc) · 1.39 KB
/
cyberark-epm-misconfigurations.json
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
[
{
"name": "cyberark-epm-blocked-applications",
"description": "This query will look for applications that have an unsatisfactory status.",
"queries": [
{
"name": "query0",
"query": "FIND cyberark_epm_applicationgroup with status != 'OK'",
"version": "v1"
}
],
"alertLevel": "MEDIUM"
},
{
"name": "cyberark-epm-application-groups-with-no-policy",
"description": "This query will look for application groups that have no policy associated.",
"queries": [
{
"name": "query0",
"query": "FIND cyberark_epm_applicationgroup THAT !ENFORCES << cyberark_epm_policy",
"version": "v1"
}
],
"alertLevel": "MEDIUM"
},
{
"name": "cyberark-epm-service-with-no-policy",
"description": "This query will look for services that have no policy associated.",
"queries": [
{
"name": "query0",
"query": "FIND cyberark_epm_service THAT !ENFORCES << cyberark_epm_policy",
"version": "v1"
}
],
"alertLevel": "MEDIUM"
},
{
"name": "cyberark-epm-ensure-regular-backups",
"description": "This query will look for accounts that do not have backups enabled.",
"queries": [
{
"name": "query0",
"query": "FIND cyberark_epm_account with backupIsEnabled != true",
"version": "v1"
}
],
"alertLevel": "MEDIUM"
}
]