This hunt targets adversary behavior linked to the Latrodectus threat actor by actively scanning Azure Sentinel logs against a curated set of 12 high-fidelity Indicators of Compromise (IOCs). Proactively executing this search is critical for the SOC team to identify early-stage intrusions and validate potential compromises before they escalate into significant incidents within the cloud environment.
Malware Family: Latrodectus Total IOCs: 12 IOC Types: domain, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | caramdistribuciones.com.ar | payload_delivery | 2026-07-15 | 100% |
| domain | cmla.blog | payload_delivery | 2026-07-15 | 100% |
| domain | cursohenfil.com.br | payload_delivery | 2026-07-15 | 100% |
| domain | cydesys.com | payload_delivery | 2026-07-15 | 100% |
| domain | dokonalebydleni.cz | payload_delivery | 2026-07-15 | 100% |
| domain | atlantadumpsterrentalhq.com | payload_delivery | 2026-07-15 | 100% |
| domain | baumas.no | payload_delivery | 2026-07-15 | 100% |
| domain | bringlearngrow.com | payload_delivery | 2026-07-15 | 100% |
| domain | artsunfold.com | payload_delivery | 2026-07-15 | 100% |
| url | hxxps://catholicsma.com/wp-content/uploads/2024/07/main.js | payload_delivery | 2026-07-15 | 50% |
| domain | alianzaamericanaseguros.com | payload_delivery | 2026-07-15 | 100% |
| url | hxxps://asioklaydpory.com/h4r2.html | botnet_cc | 2026-07-15 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Latrodectus
let malicious_domains = dynamic(["caramdistribuciones.com.ar", "cmla.blog", "cursohenfil.com.br", "cydesys.com", "dokonalebydleni.cz", "atlantadumpsterrentalhq.com", "baumas.no", "bringlearngrow.com", "artsunfold.com", "alianzaamericanaseguros.com"]);
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://catholicsma.com/wp-content/uploads/2024/07/main.js", "https://asioklaydpory.com/h4r2.html"]);
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 4 specific false positive scenarios for the ThreatFox: Latrodectus IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Scheduled Endpoint Protection Scans
ProcessName of the security agent (e.g., C:\Program Files\CrowdStrike\fs.exe) combined with a time-based filter to exclude alerts occurring strictly between 02:00 and 04:00 UTC during maintenance windows.Software Deployment via Configuration Management
SCCM-P01, SCCM-DP02) or Ansible controller IPs. Additionally, filter out connections where the destination port matches standard deployment protocols (e.g., TCP 8530 for SCCM) rather than generic web browsing ports.Automated Patch Management Jobs