This hunt targets adversary behavior involving the deployment of RemcoS remote access trojans by detecting specific indicators of compromise within network and endpoint telemetry. Proactively hunting for these signatures in Azure Sentinel is critical to identify early-stage lateral movement and data exfiltration attempts before they escalate into full-scale breaches.
Malware Family: Remcos Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 204[.]44[.]93[.]75:14641 | botnet_cc | 2026-07-16 | 75% |
| ip:port | 204[.]44[.]93[.]75:14642 | botnet_cc | 2026-07-16 | 75% |
| ip:port | 103[.]186[.]64[.]138:2404 | botnet_cc | 2026-07-16 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["103.186.64.138", "204.44.93.75"]);
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.186.64.138", "204.44.93.75"]);
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 specific false positive scenarios for the ThreatFox: Remcos IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Security Agent Updates and Scans
C:\Program Files\CrowdStrike\fs.exe or MsMpEng.exe) and whitelist specific destination IP ranges associated with the vendor’s update infrastructure if they match the Remcos IOCs.IT Administration Remote Management Sessions
DOMAIN\IT_Admins) or restrict the rule alerting logic to exclude connections initiated by known management service executables (e.g., ccmexec.exe, tv_agent.exe).Scheduled Software Deployment and Patch Management