This hunt detects adversary behavior involving the execution of known XWorm indicators of compromise (IOCs) that signal active worm propagation and potential lateral movement within the network. A SOC team should proactively hunt for these signals in Azure Sentinel to rapidly identify early-stage infections, isolate affected assets before widespread replication occurs, and mitigate the risk of persistent malware outbreaks.
Malware Family: XWorm Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 194[.]116[.]236[.]49:2222 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 84[.]38[.]129[.]114:4545 | botnet_cc | 2026-08-21 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XWorm
let malicious_ips = dynamic(["84.38.129.114", "194.116.236.49"]);
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(["84.38.129.114", "194.116.236.49"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: XWorm IOCs detection rule, including recommended filters and exclusions tailored for an enterprise environment:
Antivirus Engine Updates & Signature Downloads
C:\Program Files\CrowdStrike\csfalcon.exe or MsMpEng.exe) and exclude traffic destined for known vendor update domains (e.g., *.crowdstrike.com, *.microsoft.com).Scheduled Backup and Data Replication Jobs
vrb.exe (Veeam) or commvault.cmd, regardless of destination IP matches.Patch Management Deployment Cycles