This hunt detects adversary activity by correlating Azure Sentinel logs against twelve specific Indicators of Compromise (IOCs) linked to the Remus threat actor. Proactive hunting for these signals is critical to identify early-stage intrusions and mitigate potential data exfiltration or lateral movement before they escalate into a full-scale incident.
Malware Family: Remus Total IOCs: 12 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://doresxa.click:6271/transactions | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://bestals.shop:8592/images | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://neortal.click:8321/videos | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://bestals.shop:8592/comments | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://neortal.click:8321/accounts | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://cdire.shop:9048/payments | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://shhsift.click:7647/projects | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://bestals.shop:8592/messages | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://flreaow.click:6527/invoices | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://neortal.click:8321/categories | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://cdire.shop:9048/exports | botnet_cc | 2026-09-01 | 75% |
| url | hxxp://cdire.shop:9048/settings | botnet_cc | 2026-09-01 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Remus
let malicious_urls = dynamic(["http://doresxa.click:6271/transactions", "http://bestals.shop:8592/images", "http://neortal.click:8321/videos", "http://bestals.shop:8592/comments", "http://neortal.click:8321/accounts", "http://cdire.shop:9048/payments", "http://shhsift.click:7647/projects", "http://bestals.shop:8592/messages", "http://flreaow.click:6527/invoices", "http://neortal.click:8321/categories", "http://cdire.shop:9048/exports", "http://cdire.shop:9048/settings"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: Remus IOCs detection rule, along with recommended filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus/EDR Definition Updates via Remus-Integrated Agents
C:\Program Files\CrowdStrike\FalconSensor\csfalcon.exe (or equivalent EDR agent) and the destination port is restricted to standard update ports (e.g., 443, 80). Add a condition: Process Name IN ("FalconService", "MsMpEng.exe") AND Destination Port == 443.Scenario: Admin-Initiated Threat Intelligence Feed Synchronization
Hostname IN ("SOC-JUMP-01", "SOC-JUMP-02")). Additionally, filter out events where the initiating process is powershell.exe with a command line containing keywords like -ImportRemusFeed or -UpdateThreatIntel.Scenario: Third-Party SIEM Integration and Log Forwarding