This detection rule identifies the lateral movement and data exfiltration activities of the N-W0rm malware as it propagates through network segments while establishing command-and-control channels. A proactive hunt for these indicators in Azure Sentinel is critical to rapidly contain the worm’s spread and prevent significant data loss before it compromises additional assets across the environment.
Malware Family: N-W0rm Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 178[.]66[.]70[.]14:10776 | botnet_cc | 2026-07-21 | 100% |
| ip:port | 188[.]32[.]41[.]18:10777 | botnet_cc | 2026-07-21 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - N-W0rm
let malicious_ips = dynamic(["178.66.70.14", "188.32.41.18"]);
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(["178.66.70.14", "188.32.41.18"]);
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: N-W0rm IOCs detection rule, including suggested filters or exclusions tailored for an enterprise environment:
Scheduled Antivirus Definition Updates via Cloud Sync
MsMpEng.exe, FalconSensorService.exe) and exclude traffic originating from known update server subnets or whitelisted cloud IP ranges defined in the threat intelligence feed.Enterprise File Share Replication Jobs
VeeamTransport.exe, rsyncd) and the destination port corresponds to standard file transfer protocols (SMB 445, SSH 22) during defined maintenance windows (e.g., 01:00 – 05:00 local time).Software Deployment via Configuration Management Tools