This hunt detects adversary behavior involving the execution of known XWorm indicators, which are frequently used to establish initial footholds and propagate malware across enterprise networks. A SOC team should proactively search for these IOCs in Azure Sentinel to rapidly identify early-stage infections and prevent lateral movement before the worm compromises critical assets.
Malware Family: XWorm Total IOCs: 8 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | windowsupdate.webhop.me | botnet_cc | 2026-08-11 | 75% |
| ip:port | 31[.]56[.]209[.]60:443 | botnet_cc | 2026-08-11 | 75% |
| domain | barikadeuku.freedev.app | botnet_cc | 2026-08-11 | 100% |
| domain | without.kesug.com | botnet_cc | 2026-08-11 | 100% |
| domain | tagmentos.bingbaochow.cam | botnet_cc | 2026-08-11 | 75% |
| domain | haghuer.bingbaochow.cam | botnet_cc | 2026-08-11 | 75% |
| ip:port | 104[.]249[.]10[.]95:7004 | botnet_cc | 2026-08-11 | 75% |
| domain | technocalfindersda.bounceme.net | botnet_cc | 2026-08-11 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XWorm
let malicious_ips = dynamic(["31.56.209.60", "104.249.10.95"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc
// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["31.56.209.60", "104.249.10.95"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - XWorm
let malicious_domains = dynamic(["windowsupdate.webhop.me", "barikadeuku.freedev.app", "without.kesug.com", "tagmentos.bingbaochow.cam", "haghuer.bingbaochow.cam", "technocalfindersda.bounceme.net"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: XWorm IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Antivirus Engine Signature Updates
MpCmdRun.exe or csfalcon.exe) accesses the network to fetch signatures from vendor cloud repositories.Microsoft Defender Antivirus Service, CrowdStrike Falcon Sensor) and exclude network destinations matching the vendor’s update server IP ranges or domains (e.g., *.microsoft.com, *.crowdstrike.com).Scheduled Enterprise Backup Jobs
DOMAIN\BackupSvc) running on designated backup server hosts during their defined maintenance windows (e.g., 02:00–06:00 UTC). Additionally, exclude traffic destined for the organization’s internal backup repository IP subnets.Software Deployment via Configuration Management