← Back to SOC feed Coverage →

ThreatFox: Lumma Stealer IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEventsUrlClickEvents
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-09-26T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt identifies potential compromises involving Lumma Stealer, a prevalent infostealer that exfiltrates sensitive data such as credentials and cryptocurrency wallet information. Proactively hunting for these IOCs in Azure Sentinel is critical to detect early-stage intrusion attempts and prevent lateral movement or data exfiltration before the adversary achieves their objectives.

IOC Summary

Malware Family: Lumma Stealer Total IOCs: 8 IOC Types: url, sha256_hash, ip:port, domain

TypeValueThreat TypeFirst SeenConfidence
domaingemscocl.combotnet_cc2026-09-2690%
urlhxxps://gemscocl.com/nfront.phpbotnet_cc2026-09-2690%
urlhxxps://gemscocl.com/nback.phpbotnet_cc2026-09-2690%
domainastroflowsystems.lolpayload_delivery2026-09-2680%
sha256_hashd98637ad8c87336f9e8a9789802d01fa76c60afc1d0cf1273a96eebfc48697capayload2026-09-26100%
urlhxxp://94[.]26[.]83[.]69/panel/pb-firepayload_delivery2026-09-2690%
domainninjamysticblade.cfdpayload_delivery2026-09-2685%
ip:port94[.]26[.]83[.]69:80payload_delivery2026-09-2685%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Lumma Stealer
let malicious_ips = dynamic(["94.26.83.69"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["94.26.83.69"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Lumma Stealer
let malicious_domains = dynamic(["gemscocl.com", "astroflowsystems.lol", "ninjamysticblade.cfd"]);
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://gemscocl.com/nfront.php", "https://gemscocl.com/nback.php", "http://94.26.83.69/panel/pb-fire"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Lumma Stealer
let malicious_hashes = dynamic(["d98637ad8c87336f9e8a9789802d01fa76c60afc1d0cf1273a96eebfc48697ca"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

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