This detection rule identifies adversary activity by monitoring for eight specific Indicators of Compromise (IOCs) linked to the Remus threat actor within Azure Sentinel logs. Proactively hunting for these IOCs is critical because early identification of Remus-associated signals enables the SOC team to rapidly isolate affected assets and mitigate potential data exfiltration or lateral movement before full compromise occurs.
Malware Family: Remus Total IOCs: 8 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 188[.]166[.]234[.]214:7528 | botnet_cc | 2026-08-30 | 100% |
| url | hxxp://flreaow.click:6527/customers | botnet_cc | 2026-08-30 | 75% |
| url | hxxp://shhsift.click:7647/products | botnet_cc | 2026-08-30 | 75% |
| url | hxxp://cdire.shop:9048/files | botnet_cc | 2026-08-30 | 75% |
| url | hxxp://flreaow.click:6527/images | botnet_cc | 2026-08-30 | 75% |
| url | hxxp://mountat.click:7528/tokens | botnet_cc | 2026-08-30 | 75% |
| url | hxxp://shhsift.click:7647/customers | botnet_cc | 2026-08-30 | 75% |
| url | hxxp://cdire.shop:9048/contacts | botnet_cc | 2026-08-30 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["188.166.234.214"]);
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(["188.166.234.214"]);
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://flreaow.click:6527/customers", "http://shhsift.click:7647/products", "http://cdire.shop:9048/files", "http://flreaow.click:6527/images", "http://mountat.click:7528/tokens", "http://shhsift.click:7647/customers", "http://cdire.shop:9048/contacts"]);
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 5 specific false positive scenarios for the ThreatFox: Remus IOCs detection rule, along with targeted filtering strategies suitable for an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates
MpCmdRun.exe, SymantecDefender.exe) and restrict the alert to only trigger when these processes communicate with ports other than standard update ports (443, 80) or outside of defined maintenance windows (e.g., 02:00–04:00 local time).Scenario: Automated Cloud Backup Jobs
svc_backup_prod, VeeamBackupSvc) and filter out traffic originating from designated Backup VLANs or subnets where these agents are deployed, ensuring the rule only alerts on user-facing workstations.Scenario: Third-Party Patch Management Execution