This detection identifies adversary activity linked to the Remus threat actor by monitoring seven specific indicators of compromise across the Azure Sentinel environment. Proactive hunting is essential to rapidly isolate and analyze potential intrusions from this sophisticated group before they can establish persistence or exfiltrate sensitive data.
Malware Family: Remus Total IOCs: 7 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://cdire.shop:9048/sessions | botnet_cc | 2026-08-31 | 75% |
| url | hxxp://bravplo.click:7713/tasks | botnet_cc | 2026-08-31 | 75% |
| ip:port | 31[.]97[.]133[.]166:4812 | botnet_cc | 2026-08-31 | 100% |
| url | hxxp://uiccvbk.click:8839/invoices | botnet_cc | 2026-08-31 | 75% |
| url | hxxp://shhsift.click:7647/users | botnet_cc | 2026-08-31 | 75% |
| url | hxxp://cdire.shop:9048/accounts | botnet_cc | 2026-08-31 | 75% |
| url | hxxp://flreaow.click:6527/webhooks | botnet_cc | 2026-08-31 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["31.97.133.166"]);
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(["31.97.133.166"]);
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://cdire.shop:9048/sessions", "http://bravplo.click:7713/tasks", "http://uiccvbk.click:8839/invoices", "http://shhsift.click:7647/users", "http://cdire.shop:9048/accounts", "http://flreaow.click:6527/webhooks"]);
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 in an enterprise environment, including suggested filters and exclusions:
Scenario: Scheduled Endpoint Protection Scans
ProcessName is one of the trusted EDR agents (e.g., MsMpEng.exe, FalconSensorService.exe) AND the UserAccount matches a dedicated service account (e.g., svc-antivirus-updates).Scenario: Automated Patch Management Deployments
SourceHost belongs to the “Patch Management” Active Directory Organizational Unit (OU) and the destination port is standard HTTPS (443).Scenario: Third-Party Cloud Backup Operations