This hunt detects adversary activity involving four specific Indicators of Compromise (IOCs) linked to the XWorm malware family, which are known for their ability to propagate across networked systems via file sharing and email vectors. A SOC team should proactively hunt for these IOCs in Azure Sentinel to identify early-stage infections before they escalate into widespread lateral movement or data exfiltration incidents within the organization’s cloud infrastructure.
Malware Family: XWorm Total IOCs: 4 IOC Types: domain, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 109[.]122[.]18[.]169:3693 | botnet_cc | 2026-08-27 | 75% |
| ip:port | 178[.]173[.]234[.]123:7007 | botnet_cc | 2026-08-27 | 75% |
| domain | killkill1.myftp.biz | botnet_cc | 2026-08-27 | 75% |
| domain | inter.myftp.biz | botnet_cc | 2026-08-27 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XWorm
let malicious_ips = dynamic(["109.122.18.169", "178.173.234.123"]);
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(["109.122.18.169", "178.173.234.123"]);
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(["killkill1.myftp.biz", "inter.myftp.biz"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: XWorm IOCs detection rule:
Scenario: Scheduled Antivirus Definition Updates
13.107.x.x for Microsoft) or filter alerts where the process name is MsMpEng.exe and the event time falls within the defined maintenance window (02:00–04:00).Scenario: Internal Patch Management Deployment
10.20.x.x subnet) and restrict the rule to only trigger on external destination IPs, excluding any traffic where the destination is within the corporate LAN.Scenario: Automated Backup Agent Communication