This hunt targets adversary behavior involving the deployment of Remcos remote access trojans by identifying specific indicators of compromise such as known malicious hashes and network connections. Proactively hunting for these signals in Azure Sentinel is critical to detect early-stage lateral movement and command-and-control communications before the malware establishes persistent footholds within the enterprise environment.
Malware Family: Remcos Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 185[.]149[.]24[.]6:2405 | botnet_cc | 2026-07-17 | 100% |
| ip:port | 185[.]236[.]203[.]99:58798 | botnet_cc | 2026-07-17 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["185.236.203.99", "185.149.24.6"]);
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(["185.236.203.99", "185.149.24.6"]);
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 4 specific false positive scenarios for the ThreatFox: Remcos IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Protection Policy Updates via GPO
ProcessName is ccmexec.exe (ConfigMgr) or MsDeployAgent.exe, and the ParentProcessName is svchost.exe running under the NT AUTHORITY\SYSTEM account, specifically during defined maintenance windows (e.g., 02:00–04:00 UTC).Automated Patch Management Scans
InitiatingProcess is known patch management binaries (e.g., IvantiAgent.exe, SolarWindsPatchService.exe) and the event source is restricted to the “Software Update” or “Health Check” job categories within the tool’s dashboard.Scheduled Backup and Snapshot Operations