Skip to main content
Question

Create extension attribute to detect if CrowdStrike Falcon Sensor has password configured

  • February 11, 2019
  • 0 replies
  • 10 views

Forum|alt.badge.img+5

Hello, I can't figure out where to upload my XML file for this, so here the script for it.
It's super easy, but useful for inventory.

#!/bin/sh if [ -e /System/Library/Keychains/.falconinstallguard.bin ] then echo "<result>True</result>" else echo "<result>False</result>" fi