-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
53 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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" | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters