-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EDR and AV Killer - A Large Scale Driver Exploitation Detection.kql
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
Sentinel/EDR and AV Killer - A Large Scale Driver Exploitation Detection.kql
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// EDR and AV Killer - A Large Scale Driver Exploitation Detection | ||
// https://research.checkpoint.com/2025/large-scale-exploitation-of-legacy-driver/ | ||
|
||
let Truesight202Variants=externaldata(FileHash:string) | ||
[h'https://raw.githubusercontent.com/SlimKQL/Hunting-Queries-Detection-Rules/refs/heads/main/IOC/SHA-256-Truesight-Driver-Variants-Ver202.txt']; | ||
let EDRKillerFileHashes = | ||
Truesight202Variants | ||
| project FileHash; | ||
DeviceFileEvents | ||
| where TimeGenerated > ago(90d) | ||
| where InitiatingProcessSHA256 has_any(EDRKillerFileHashes) or SHA256 has_any(EDRKillerFileHashes) | ||
// | ||
// EDR & AV Killer | ||
// The legacy Truesight.sys driver (version 2.0.2) has 2,500+ variants bypassing the latest | ||
// Microsoft Vulnerable Driver Blocklist and common detection mechanisms. The above KQL scan | ||
// across DeviceFileEvents for the past 90 days for potential truesight.sys variant presence. |