This hunt detects adversary activity linked to the Remus threat actor by correlating four specific Indicators of Compromise (IOCs) within Azure Sentinel logs. Proactively hunting for these signatures is critical because early identification of Remus-associated artifacts allows the SOC team to rapidly isolate potential compromises before they escalate into broader lateral movements or data exfiltration events.
Malware Family: Remus Total IOCs: 4 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]141[.]27[.]68:4959 | botnet_cc | 2026-06-29 | 75% |
| url | hxxp://miedorama.com:4959 | botnet_cc | 2026-06-29 | 75% |
| ip:port | 72[.]60[.]121[.]225:7838 | botnet_cc | 2026-06-29 | 75% |
| url | hxxp://angect.xyz:7838 | botnet_cc | 2026-06-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["45.141.27.68", "72.60.121.225"]);
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.141.27.68", "72.60.121.225"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Remus
let malicious_urls = dynamic(["http://miedorama.com:4959", "http://angect.xyz:7838"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are four specific false positive scenarios for the ThreatFox: Remus IOCs detection rule, tailored for a legitimate enterprise environment:
Endpoint Protection Policy Updates via CrowdStrike Falcon
remus service (or related telemetry agents) to download and validate new IOCs, generating network traffic that matches the Remus signature.C:\Program Files\CrowdStrike\fs.exe or the parent process is falcon-sensor.exe, specifically during the maintenance window (e.g., 02:00 – 04:00 UTC).Automated Patch Management via Microsoft SCCM/MECM
10.20.x.x) where the destination port is 443 and the user agent string contains “SCCM-Client” or “Microsoft-Windows-Update-Agent”.IT Admin Manual Remediation via PowerShell Scripts
Invoke-RemusScan.ps1) on a specific server cluster to manually verify IOC integrity before a quarterly audit. The script invokes the Remus CLI tool, which establishes connections to the ThreatFox backend, mimicking the behavior of an active threat detection event.