This hypothesis detects adversary activity involving the Remcos Remote Access Trojan by monitoring for specific indicators of compromise such as unique file hashes and network connections. Proactive hunting in Azure Sentinel is essential to identify early-stage lateral movement and data exfiltration attempts before the malware establishes persistent control over compromised endpoints.
Malware Family: Remcos Total IOCs: 3 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | sacumpeba.com | botnet_cc | 2026-07-30 | 75% |
| ip:port | 62[.]60[.]226[.]68:24046 | botnet_cc | 2026-07-30 | 100% |
| ip:port | 77[.]110[.]115[.]101:2404 | botnet_cc | 2026-07-30 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remcos
let malicious_ips = dynamic(["62.60.226.68", "77.110.115.101"]);
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(["62.60.226.68", "77.110.115.101"]);
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(["sacumpeba.com"]);
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 targeted filters and exclusions suitable for an enterprise environment:
Scenario: Internal Vulnerability Scanning via Qualys or Tenable
QualysCloudAgent.exe and TenableNessusService.exe processes. Additionally, exclude traffic originating from the internal vulnerability management subnet (e.g., 10.50.20.0/24) connecting to known Qualys/Tenable cloud endpoints.Scenario: Automated Software Deployment via SCCM or Intune
ccmexec.exe (SCCM) or IntuneManagementExtension.exe. Implement a filter to suppress detections occurring during defined maintenance windows (e.g., 02:00–04:00 local time) when bulk deployments are scheduled.Scenario: Scheduled Backup Jobs Using Veeam or Commvault