← Back to SOC feed Coverage →

ThreatFox: Latrodectus IOCs

ioc-hunt HIGH ThreatFox
DeviceFileEventsDnsEventsUrlClickEvents
iocthreatfoxwin-latrodectus
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-07-12T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt detects adversary activity linked to the Latrodectus threat actor by monitoring for specific indicators of compromise across the Azure Sentinel environment. Proactively hunting these four IOCs is critical because Latrodectus represents a high-severity threat that requires early identification to mitigate potential data exfiltration or lateral movement before automated alerts trigger.

IOC Summary

Malware Family: Latrodectus Total IOCs: 4 IOC Types: sha256_hash, domain, url

TypeValueThreat TypeFirst SeenConfidence
domainbewsertinekk.infobotnet_cc2026-07-12100%
sha256_hash5BEA5AF5215089D97749D438351D7288310D0B8A472616EDBE1B34168AD1001Cpayload2026-07-1275%
urlhxxps://2d4e5f6-7a8b-4c2d-9e1f-3b5a7c8d9e0fc.s3.us-east-1.amazonaws.com/config.cmdpayload_delivery2026-07-1275%
urlhxxps://klonfcrtyseaflow.com/inline.phpbotnet_cc2026-07-12100%

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Latrodectus
let malicious_domains = dynamic(["bewsertinekk.info"]);
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 - Latrodectus
let malicious_urls = dynamic(["https://2d4e5f6-7a8b-4c2d-9e1f-3b5a7c8d9e0fc.s3.us-east-1.amazonaws.com/config.cmd", "https://klonfcrtyseaflow.com/inline.php"]);
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 - Latrodectus
let malicious_hashes = dynamic(["5BEA5AF5215089D97749D438351D7288310D0B8A472616EDBE1B34168AD1001C"]);
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
DeviceFileEventsEnsure this data connector is enabled
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 5 specific false positive scenarios for the ThreatFox: Latrodectus IOCs detection rule in an enterprise environment, including suggested filters and exclusions:

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