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.
Malware Family: Latrodectus Total IOCs: 4 IOC Types: sha256_hash, domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | bewsertinekk.info | botnet_cc | 2026-07-12 | 100% |
| sha256_hash | 5BEA5AF5215089D97749D438351D7288310D0B8A472616EDBE1B34168AD1001C | payload | 2026-07-12 | 75% |
| url | hxxps://2d4e5f6-7a8b-4c2d-9e1f-3b5a7c8d9e0fc.s3.us-east-1.amazonaws.com/config.cmd | payload_delivery | 2026-07-12 | 75% |
| url | hxxps://klonfcrtyseaflow.com/inline.php | botnet_cc | 2026-07-12 | 100% |
// 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
// 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
// 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
| Sentinel Table | Notes |
|---|---|
DeviceFileEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: Latrodectus IOCs detection rule in an enterprise environment, including suggested filters and exclusions:
Endpoint Protection Scanning of Quarantined Archives
C:\Program Files\CrowdStrike\csagent.exe) and the file extension is .zip or .7z located within the specific “Quarantine” directory structure.Software Deployment via SCCM/Intune
ccmexec.exe (SCCM) or IntuneManagementExtension.exe, specifically filtering out file paths under C:\Windows\CCMCache\* where the file hash matches the IOC but the digital signature is valid and issued by a trusted internal