This hypothesis posits that adversaries are actively deploying the Remcos remote access trojan to establish persistent command-and-control channels within our network infrastructure. Proactively hunting for these specific IOCs in Azure Sentinel is critical to rapidly identify and isolate compromised endpoints before attackers can exfiltrate sensitive data or escalate privileges.
Malware Family: Remcos Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 23[.]94[.]197[.]120:2404 | botnet_cc | 2026-07-19 | 77% |
| ip:port | 62[.]60[.]226[.]68:24044 | botnet_cc | 2026-07-19 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["23.94.197.120", "62.60.226.68"]);
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(["23.94.197.120", "62.60.226.68"]);
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 in an enterprise environment, along with suggested filters or exclusions:
IT Asset Management Scans by Lansweeper or SCCM
LanSweep.exe, ccmexec.exe, pdqagent.exe) or restrict detection to non-workgroup network segments where these agents are not active.Scheduled PowerShell Maintenance Scripts
.ps1) for routine maintenance, such as clearing temp files, updating group policies, or backing up user profiles. These scripts may spawn child processes (powershell.exe, cmd.exe) that access specific file paths or registry hives identical to the Remcos IOCs.TaskScheduler and the command line contains known internal script paths (e.g., C:\Scripts\Maintenance\). Additionally, exclude events occurring during standard maintenance windows (e.g., 02:00–04:00 local time).Third-Party Antivirus Heuristic Scans