-
Notifications
You must be signed in to change notification settings - Fork 473
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update system_extensions.yml (#25917)
Added example query. --------- Co-authored-by: Eric <[email protected]>
- Loading branch information
1 parent
4779fef
commit b29e3d4
Showing
2 changed files
with
12 additions
and
3 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 |
---|---|---|
@@ -1,8 +1,17 @@ | ||
name: system_extensions | ||
examples: |- | ||
Identify system extensions that are not managed via MDM and see their | ||
signature status. | ||
Identify the signature status of system extensions not managed via MDM: | ||
``` | ||
SELECT se.identifier, se.bundle_path, se.category, se.state, s.signed FROM system_extensions se JOIN signature s on s.path = se.bundle_path WHERE se.mdm_managed='0'; | ||
``` | ||
Perform a health check on a Jamf Protect installation: | ||
``` | ||
SELECT 1 | ||
WHERE | ||
(EXISTS (SELECT 1 FROM processes WHERE name = 'JamfProtectAgent') OR ( SELECT total_seconds FROM uptime ) <= 300 ) | ||
AND EXISTS (SELECT 1 FROM system_extensions WHERE identifier = 'com.jamf.protect.security-extension') | ||
AND EXISTS (SELECT 1 FROM apps WHERE path = '/Applications/JamfProtect.app'); | ||
``` |