This detection rule identifies adversary activity linked to the Remus threat actor by monitoring three 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 isolate potential compromises before they escalate into broader lateral movement or data exfiltration incidents.
Malware Family: Remus Total IOCs: 3 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 77[.]42[.]90[.]175:9895 | botnet_cc | 2026-07-21 | 100% |
| ip:port | 62[.]171[.]177[.]27:2930 | botnet_cc | 2026-07-21 | 100% |
| url | hxxp://fimmora.surf:6504 | botnet_cc | 2026-07-21 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["62.171.177.27", "77.42.90.175"]);
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.171.177.27", "77.42.90.175"]);
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://fimmora.surf:6504"]);
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 specific false positive scenarios for the ThreatFox: Remus IOCs detection rule in an enterprise environment, including suggested filters and exclusions:
Endpoint Protection Engine Updates & Definition Refreshes
C:\Program Files\CrowdStrike\* or C:\Windows\System32\mssecsvc.exe). Additionally, filter out network traffic where the destination IP belongs to the known update server ranges of the EDR provider.Enterprise Software Supply Chain Scans
qualyspc.exe or tenable.agent.exe). Furthermore, add a time-based filter to suppress alerts occurring strictly within the maintenance window of these scheduled scans (e.g., 02:00 – 04:00 UTC on Sundays).IT Administration and Patch Management Deployments