This detection rule identifies potential Remcos remote administration tool infections by monitoring for specific indicators of compromise such as unique file hashes and network connections. Proactive hunting in Azure Sentinel is critical to uncover stealthy post-compromise activities that may evade standard signature-based defenses, ensuring early containment of this sophisticated remote access malware.
Malware Family: Remcos Total IOCs: 4 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 178[.]16[.]52[.]53:3636 | botnet_cc | 2026-09-02 | 100% |
| domain | goldenbeigesurfers.live | botnet_cc | 2026-09-02 | 75% |
| ip:port | 208[.]64[.]33[.]69:2088 | botnet_cc | 2026-09-02 | 100% |
| ip:port | 213[.]152[.]162[.]116:49006 | botnet_cc | 2026-09-02 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["208.64.33.69", "178.16.52.53", "213.152.162.116"]);
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(["208.64.33.69", "178.16.52.53", "213.152.162.116"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Remcos
let malicious_domains = dynamic(["goldenbeigesurfers.live"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | 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: Scheduled Backup Jobs Executing via PowerShell
powershell.exe to query system status or manage agents. These scripts may generate network connections to known update servers or internal repositories that match the Remcos C2 beacon pattern (specifically HTTP/HTTPS POST requests with specific User-Agent strings).C:\Program Files\Veeam\Backup and Replication\BackupService.exe) or filter alerts where the parent process is Vssvc.exe (Volume Shadow Copy Service) during standard maintenance windows.Scenario: Endpoint Protection Agent Heartbeats
C:\Program Files\McAfee\Agent\x86\mfeagent.exe or C:\Windows\System32\DPS\dpssvc.exe) and the destination IP belongs to the vendor’s trusted cloud range.Scenario: Software Deployment via SCCM/Intune