← Back to SOC feed Coverage →

ThreatFox: Lumma Stealer IOCs

ioc-hunt HIGH ThreatFox
DnsEventsUrlClickEvents
infostealeriocthreatfoxwin-lumma
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-08-11T23:00:01Z · Confidence: high

Hunt Hypothesis

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.

IOC Summary

Malware Family: Lumma Stealer Total IOCs: 2 IOC Types: domain, url

TypeValueThreat TypeFirst SeenConfidence
domainntds.shoppayload_delivery2026-08-1190%
urlhxxps://ntds.shop/jsrepopayload_delivery2026-08-1190%

KQL: Domain Hunt

// 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

KQL: Url Hunt

// 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

Required Data Sources

Sentinel TableNotes
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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:

Original source: https://threatfox.abuse.ch/browse/malware/win.lumma/