This hunt targets adversaries leveraging the xworm malware family to establish initial footholds via phishing emails and subsequently propagate laterally across network shares using exploit-driven mechanisms. Proactively hunting for these specific URLhaus indicators in Azure Sentinel is critical to detect early-stage lateral movement before the worm can fully compromise internal assets and expand its reach within the enterprise environment.
Threat: xworm Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://sesaddf.kesug.com/img_071015.png | online | malware_download | 2026-07-16 |
hxxps://misty-cherry-cea3.uploadsimg.workers.dev/FpMeR | online | malware_download | 2026-07-16 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: xworm
let malicious_domains = dynamic(["misty-cherry-cea3.uploadsimg.workers.dev", "sesaddf.kesug.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["misty-cherry-cea3.uploadsimg.workers.dev", "sesaddf.kesug.com"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the URLhaus: xworm Malicious URLs detection rule in an enterprise environment, along with suggested filters or exclusions:
Legacy File Server Synchronization via SMB Shares
SMB or HTTP protocols. Since xworm spreads via network shares, the detection logic may flag legitimate internal IP-to-IP communication patterns that mimic the worm’s lateral movement behavior, especially if the traffic originates from known file server subnets accessing standard ports (80/443) for metadata updates.File-Services subnet range (e.g., 10.20.50.0/24) and the User-Agent string contains specific legacy application identifiers like Microsoft-WebDAV-MiniRedir or SMBClient.Automated Patch Management and Software Distribution
svc_sccm_agent, svc_ivanti_dist) and destination URLs containing known internal repository domains (e.g., .internal.corp.local or specific CDN paths like /updates/microsoft/). Additionally, filter