This detection rule identifies adversary activity linked to the XWorm threat by monitoring specific Indicators of Compromise (IOCs) known to facilitate worm propagation and lateral movement within networked environments. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of XWorm signatures allows the SOC team to rapidly contain potential outbreaks before they compromise additional assets across the organization’s cloud infrastructure.
Malware Family: XWorm Total IOCs: 2 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 103[.]83[.]87[.]158:4040 | botnet_cc | 2026-08-13 | 75% |
| domain | victorymarksllc20.duckdns.org | botnet_cc | 2026-08-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - XWorm
let malicious_ips = dynamic(["103.83.87.158"]);
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(["103.83.87.158"]);
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(["victorymarksllc20.duckdns.org"]);
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 3-5 specific false positive scenarios for the ThreatFox: XWorm IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Antivirus Engine Signature Updates via Scheduled Task
C:\ProgramData\Antivirus directory.FalconSensor.exe, MsMpEng.exe) and restrict the scope to specific directories where updates are stored, such as C:\ProgramData\Microsoft\Windows Defender\Platform or C:\Program Files\CrowdStrike\Falcon.Third-Party Backup Agent Scanning Archives
VeeamTransportService.exe, RubrikAgent.exe) and the file path resides within designated backup staging folders like D:\BackupStaging\ or E:\ArchiveData\.Software Deployment via Configuration Management Tools *