This hunt detects adversary behavior involving the execution of known Lumma Stealer indicators to identify active credential and data theft campaigns within the Azure Sentinel environment. Proactively hunting for these specific IOCs is critical because early detection allows the SOC team to rapidly isolate compromised endpoints before attackers can exfiltrate sensitive credentials or deploy additional malware payloads.
Malware Family: Lumma Stealer Total IOCs: 2 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | ntds.shop | payload_delivery | 2026-08-11 | 90% |
| url | hxxps://ntds.shop/jsrepo | payload_delivery | 2026-08-11 | 90% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Lumma Stealer
let malicious_domains = dynamic(["ntds.shop"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Lumma Stealer
let malicious_urls = dynamic(["https://ntds.shop/jsrepo"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Lumma Stealer IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus or Endpoint Protection Updates
C:\Program Files\CrowdStrike\fsq.exe, MsMpEng.exe) and restrict the alert scope to non-business hours if updates are scheduled for off-peak times.Scenario: IT Admin Deployment of Patch Management Tools
ccmsetup.exe (SCCM) or IntuneManagementExtension.exe, and add a condition to ignore events occurring within 15 minutes of a known “Patch Tuesday” deployment window.Scenario: Automated Backup and Archiving Jobs