Last active
October 8, 2024 12:07
-
-
Save lcarsos/88affbc5de93dca64b3edfab2c104c2f to your computer and use it in GitHub Desktop.
Repeatedly kill sentinelone so you can actually use the processor and ram on your mac
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
#!/usr/bin/env bash | |
# Usage: sudo ./restore_functionality.sh | |
#ps aux | grep sentinel | awk -F " +" '{print $2}' | xargs kill | |
while true; do | |
launchctl kill SIGKILL system/com.crowdstrike.falcond | |
launchctl kill SIGKILL system/com.crowdstrike.userdaemon | |
launchctl kill SIGKILL system/com.sentinelone.sentineld | |
launchctl kill SIGKILL system/com.sentinelone.sentineld-helper | |
launchctl kill SIGKILL system/com.sentinelone.sentineld-guard | |
launchctl kill SIGKILL system/com.sentinelone.sentineld-updater | |
launchctl kill SIGKILL gui/502/com.sentinelone.agent | |
sleep 1 | |
done |
Thanks, super helpfull ! :)
Hi do you have the windows version of it?
Would never work without domain admin permissions.
I managed to get ride of sentineld by boot with rescue mode, then manually delete sentinel binary, if it can help :)
Thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi do you have the windows version of it?