This hunt detects adversary activity involving the Remcos remote access trojan by monitoring for specific indicators of compromise such as known file hashes and network connections. Proactively hunting for these signals in Azure Sentinel is critical to identify early-stage infections that could enable persistent lateral movement and data exfiltration before the malware establishes deep footholds within the environment.
Malware Family: Remcos Total IOCs: 10 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 217[.]60[.]102[.]8:2269 | botnet_cc | 2026-08-20 | 75% |
| ip:port | 195[.]177[.]94[.]61:2404 | botnet_cc | 2026-08-20 | 75% |
| ip:port | 89[.]106[.]83[.]41:55550 | botnet_cc | 2026-08-20 | 75% |
| domain | onboarding.radiantfluxstudio.com | botnet_cc | 2026-08-20 | 75% |
| ip:port | 46[.]151[.]182[.]93:9090 | botnet_cc | 2026-08-20 | 75% |
| ip:port | 38[.]240[.]40[.]231:2404 | botnet_cc | 2026-08-20 | 75% |
| ip:port | 151[.]243[.]109[.]130:9239 | botnet_cc | 2026-08-20 | 75% |
| domain | digitalhoster[.]4nmn.com | botnet_cc | 2026-08-20 | 75% |
| domain | bokiass.noip.at | botnet_cc | 2026-08-20 | 75% |
| ip:port | 46[.]151[.]182[.]148:8080 | botnet_cc | 2026-08-20 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["217.60.102.8", "151.243.109.130", "195.177.94.61", "38.240.40.231", "46.151.182.93", "89.106.83.41", "46.151.182.148"]);
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(["217.60.102.8", "151.243.109.130", "195.177.94.61", "38.240.40.231", "46.151.182.93", "89.106.83.41", "46.151.182.148"]);
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(["onboarding.radiantfluxstudio.com", "digitalhoster.4nmn.com", "bokiass.noip.at"]);
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, along with targeted filters and exclusions suitable for an enterprise environment:
Scenario: Automated Patch Deployment via SCCM/Intune
Process Name is ccmsetup.exe, wsman.exe, or msiexec.exe AND the Parent Process Name matches known enterprise deployment tools (e.g., TaskSchedulerService). Additionally, filter out network connections to internal IP ranges designated for patch management servers.Scenario: Scheduled Backup Jobs Utilizing Remcos-Compatible Agents
SYSTEM or specific service accounts (e.g., NT SERVICE\VeeamBackup) where the File Path resides within known backup installation directories (e.g., C:\Program Files\Commvault\...).Scenario: Endpoint Detection and Response (EDR) Self-Scans