Hello all, I've been tasked with deploying a password to our deployment of CrowdStrike. The engineers as Crowdstrike advised me to create a python script
falcon_password.py
#!/usr/bin/env python
from __future__ import print_function
password = "password"
try:
while True:
print(password)
except IOError:
pass
and then execute this command against it
./falcon_password.py | sudo /Library/CS/falconctl installguard
I am not sure how to deploy this without the "falcon_password.py" file being available in plaintext on the target computer. The file has the password in plaintext.
