This hunt hypothesis targets adversaries utilizing XWorm’s lateral movement capabilities to silently propagate across network segments by exploiting known vulnerabilities and abusing valid credentials. Proactively hunting for these indicators in Azure Sentinel is critical to identify early-stage worm infections before they achieve widespread compromise, thereby minimizing the attack surface and preventing undetected spread within the environment.
Malware Family: XWorm Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]62[.]170[.]51:7000 | botnet_cc | 2026-08-18 | 75% |
| ip:port | 31[.]56[.]209[.]234:443 | botnet_cc | 2026-08-18 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XWorm
let malicious_ips = dynamic(["31.56.209.234", "45.62.170.51"]);
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.234", "45.62.170.51"]);
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 5 specific false positive scenarios for the ThreatFox: XWorm IOCs detection rule, including tailored filters and exclusions suitable for an enterprise environment:
Scenario: Automated Vulnerability Scanning by Internal Tools
Source Host being part of the “Vulnerability Management” asset group (e.g., IP range 10.20.50.x) and the Process Name matching known scanner executables (nessus.exe, qualyspc.exe, or MsSenseService). Additionally, exclude traffic where the Destination Port is strictly 80/443 or specific management ports (e.g., 691) used by these tools.Scenario: Scheduled Backup and Replication Jobs
vrb.exe, commvaultagent.exe). Furthermore, exclude connections where the Source User is a known service account (e.g., `svc_backup_admin