This hunt detects adversaries leveraging the Remcos Remote Access Trojan to establish persistent footholds through phishing campaigns, enabling them to exfiltrate sensitive data and execute remote commands on compromised endpoints. Proactively hunting for these indicators in Azure Sentinel is critical because Remcos’s ability to maintain long-term access allows attackers to operate undetected while escalating privileges and moving laterally within the network.
Malware Family: Remcos Total IOCs: 2 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]148[.]18[.]44:53522 | botnet_cc | 2026-08-12 | 75% |
| domain | powerflash64.duckdns.org | botnet_cc | 2026-08-12 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["45.148.18.44"]);
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(["45.148.18.44"]);
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(["powerflash64.duckdns.org"]);
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: Legitimate Remote Administration via RMM Tools
Scenario: Scheduled Backup and Monitoring Jobs
02:00 - 06:00 daily) or exclude specific Process Names such as VeeamAgent.exe, AcronisBackupService.exe, and DatadogAgent.exe.Scenario: Phishing Simulation Platforms