This detection rule identifies adversary activity by correlating three specific Indicators of Compromise (IOCs) linked to the Remus threat actor within Azure Sentinel logs. Proactive hunting for these IOCs is critical because early identification of Remus-associated signals allows the SOC team to rapidly contain potential intrusions before they escalate into broader data exfiltration or lateral movement incidents.
Malware Family: Remus Total IOCs: 3 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://mrlketo.shop:8932/users | botnet_cc | 2026-08-25 | 75% |
| url | hxxp://uiccvbk.click:8839/orders | botnet_cc | 2026-08-25 | 75% |
| ip:port | 64[.]227[.]109[.]19:3452 | botnet_cc | 2026-08-25 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["64.227.109.19"]);
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(["64.227.109.19"]);
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://mrlketo.shop:8932/users", "http://uiccvbk.click:8839/orders"]);
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 4 specific false positive scenarios for the ThreatFox: Remus IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus Definitions Update via WSUS
MpCmdG.exe for Defender or csagent.exe for CrowdStrike) and restrict the alert to only fire if the process is not running under a scheduled task context (e.g., exclude Scheduled Task: {GUID-WSUS-Update}).Scenario: Admin Deployment of Security Baselines via SCCM/Intune
ccmexec.exe (SCCM) or IntuneManagementExtension.exe, and the Source IP belongs to the internal management subnet (e.g., 10.50.x.x).Scenario: Internal Threat Intelligence Platform Synchronization