Endpoint Security Evasion via Malicious AppLocker Deny Rules
Description
Detects the creation or modification of AppLocker executable rules that explicitly deny execution of known endpoint security or EDR components by file path. Adversaries may abuse AppLocker policies to prevent security agents from starting after reboot or policy refresh, resulting in impaired defensive visibility and protection on the endpoint.
Query · eql
registry where event.action == "modification" and registry.value == "Value" and
registry.path : "H*\\Software\\Policies\\Microsoft\\Windows\\SrpV2\\Exe\\*\\Value" and
registry.data.strings : "*Deny*" and
registry.data.strings : ("*Elastic*",
"*WinDefend*",
"*MsMpEng*",
"*MpDefenderCoreService*",
"*Windows Defender*",
"*CrowdStrike*",
"*SentinelOne*")