This hypothesis posits that adversaries are deploying the Remcos remote access trojan within the Azure environment to establish persistent command and control channels using known indicators of compromise. Proactive hunting for these specific IOCs is critical because early detection of Remcos activity allows the SOC team to mitigate data exfiltration risks before the malware can fully establish its foothold on compromised endpoints.
Malware Family: Remcos Total IOCs: 3 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 88[.]216[.]73[.]83:9920 | botnet_cc | 2026-07-05 | 75% |
| ip:port | 138[.]226[.]237[.]250:4509 | botnet_cc | 2026-07-05 | 75% |
| ip:port | 103[.]11[.]41[.]20:12431 | botnet_cc | 2026-07-05 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["138.226.237.250", "88.216.73.83", "103.11.41.20"]);
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(["138.226.237.250", "88.216.73.83", "103.11.41.20"]);
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 recommended filters or exclusions:
Endpoint Protection Scanning of Quarantine Folders
C:\ProgramData\Quarantine directory. This folder often contains archived malware samples from previous incidents, including historical Remcos variants used for training or signature updates. When the scanner reads these files, it triggers the IOCs associated with the sample’s internal structure.C:\ProgramData\Quarantine and C:\Windows\System32\com\CrowdStrike. Additionally, filter out events where the parent process is the EDR service executable (e.g., csagent.exe, MsMpEng.exe) rather than a user-facing application.IT Admin Deployment of Security Baseline Scripts
powershell.exe where the command line arguments contain keywords like -File, -ExecutionPolicy Bypass, and paths pointing to the software distribution point (e.g., \\server\share\scripts). Whitelist the specific hash of the deployment script itself.Scheduled Antivirus Signature Updates