This detection rule identifies the presence of Remcos Remote Access Trojan indicators within your Azure Sentinel environment to uncover potential unauthorized remote access and data exfiltration activities. Proactively hunting for these specific IOCs is critical because Remcos enables adversaries to establish persistent command-and-control channels that can silently compromise sensitive assets before traditional alerts trigger.
Malware Family: Remcos Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 207[.]180[.]29[.]217:2404 | botnet_cc | 2026-08-26 | 75% |
| ip:port | 207[.]180[.]29[.]85:2404 | botnet_cc | 2026-08-26 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["207.180.29.217", "207.180.29.85"]);
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(["207.180.29.217", "207.180.29.85"]);
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: Remcos IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Enterprise Endpoint Protection Scans
C:\Program Files\CrowdStrike\fs_qc.exe or C:\Windows\System32\DefenderSvc.exe) when they initiate outbound connections to known update domains. Exclude these processes from triggering the rule if the destination IP is within the organization’s trusted cloud provider CIDR ranges (e.g., AWS, Azure).Scenario: Scheduled Backup and Sync Operations
OneDrive.exe, VeeamTransportService.exe, or runs under the NT SERVICE\ context during off-peak hours (e.g., 02:00–05:00 local time).Scenario: Remote Desktop and Collaboration Tools