Skip to content

Commit

Permalink
GitLab Threat Intelligence Identified 16 Malicious Chrome extensions.kql
Browse files Browse the repository at this point in the history
  • Loading branch information
SlimKQL authored Feb 24, 2025
1 parent 037aa55 commit 7706657
Showing 1 changed file with 13 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
// GitLab Threat Intelligence Identified 16 Malicious Chrome extensions

// https://gitlab-com.gitlab.io/gl-security/security-tech-notes/threat-intelligence-tech-notes/malicious-browser-extensions-feb-2025/

let GitLabTI=externaldata(MaliciousChromeID:string)
[h'https://raw.githubusercontent.com/SlimKQL/Hunting-Queries-Detection-Rules/refs/heads/main/IOC/GitLabTI-MaliciousChromeExtID.csv'];
let MID =
GitLabTI
| project MaliciousChromeID;
DeviceFileEvents
| where ActionType == "FileCreated" or ActionType == "FileModified" or ActionType == "FileRenamed"
| where FileName endswith ".crx"
| where FileName has_any(MID)

0 comments on commit 7706657

Please sign in to comment.