mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Add CrowdStrike Falcon System Extension policy (#36994)
This commit is contained in:
parent
def6f29781
commit
e7291062ec
1 changed files with 19 additions and 1 deletions
|
|
@ -2143,4 +2143,22 @@ spec:
|
|||
<integer>1</integer>
|
||||
</dict>
|
||||
</plist>
|
||||
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: policy
|
||||
spec:
|
||||
name: CrowdStrike Falcon System Extension enabled and activated (macOS)
|
||||
query: |
|
||||
SELECT 1
|
||||
WHERE (EXISTS (SELECT 1 FROM system_extensions WHERE identifier = 'com.crowdstrike.falcon.Agent'))
|
||||
AND EXISTS (SELECT 1 FROM system_extensions WHERE state = 'activated_enabled');
|
||||
bash: systemextensionsctl list | grep 'falcon' | grep 'activated enabled'
|
||||
description: Checks to make sure that the CrowdStrike System Extension is enabled and activated on macOS devices.
|
||||
resolution: "To activate the CrowdStrike Falcon System Extension, on the failing device, run the following command in the Terminal app: sudo /Applications/Falcon.app/Contents/Resources/falconctl load"
|
||||
tags: compliance, hardening, critical
|
||||
platform: darwin
|
||||
contributors: spalmesano0
|
||||
script: |
|
||||
#!/bin/sh
|
||||
|
||||
/Applications/Falcon.app/Contents/Resources/falconctl load
|
||||
|
|
|
|||
Loading…
Reference in a new issue