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 signals is critical because early identification of Remus-associated behaviors allows the SOC team to rapidly isolate affected assets and mitigate potential data exfiltration or lateral movement before broader impact occurs.
Malware Family: Remus Total IOCs: 3 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://beljaro.shop:2536/profiles | botnet_cc | 2026-08-12 | 75% |
| url | hxxp://beljaro.shop:2536/categories | botnet_cc | 2026-08-12 | 75% |
| url | hxxp://beljaro.shop:2536/products | botnet_cc | 2026-08-12 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Remus
let malicious_urls = dynamic(["http://beljaro.shop:2536/profiles", "http://beljaro.shop:2536/categories", "http://beljaro.shop:2536/products"]);
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, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Endpoint Protection Scans
MsMpEng.exe or FalconSensorService.exe) and restrict the alert to non-business hours if the scan is known to run at 02:00 UTC. Alternatively, exclude traffic originating from the specific internal subnet where the EDR management server resides.Scenario: Admin-Initiated Security Tool Deployment
ccmsetup.exe (SCCM) or ansible-playbook. Additionally, add an exclusion for specific Service Accounts used for deployment (e.g., DOMAIN\DeploySvc) to prevent alerts during known maintenance windows.Scenario: Automated Backup and Archive Jobs