This detection rule identifies active adversary behavior by monitoring Azure Sentinel logs for matches against nine specific Indicators of Compromise (IOCs) linked to the Remus threat actor. Proactively hunting for these IOCs is critical because early identification of Remus activity enables the SOC team to rapidly isolate affected assets and mitigate potential data exfiltration or lateral movement before broader compromise occurs.
Malware Family: Remus Total IOCs: 9 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://maxhealthinsadvantage.com:9403 | botnet_cc | 2026-08-01 | 75% |
| ip:port | 45[.]43[.]143[.]17:5776 | botnet_cc | 2026-08-01 | 100% |
| url | hxxp://kinderplow.com:5782 | botnet_cc | 2026-08-01 | 75% |
| url | hxxp://staxta.click:5627 | botnet_cc | 2026-08-01 | 75% |
| ip:port | 45[.]148[.]146[.]52:2535 | botnet_cc | 2026-08-01 | 100% |
| url | hxxp://sahalexchange.com:9504 | botnet_cc | 2026-08-01 | 75% |
| url | hxxp://onesdto.shop:2535 | botnet_cc | 2026-08-01 | 75% |
| url | hxxp://azurhay.shop:8539 | botnet_cc | 2026-08-01 | 75% |
| url | hxxp://slyfogx.shop:5776 | botnet_cc | 2026-08-01 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["45.43.143.17", "45.148.146.52"]);
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(["45.43.143.17", "45.148.146.52"]);
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://maxhealthinsadvantage.com:9403", "http://kinderplow.com:5782", "http://staxta.click:5627", "http://sahalexchange.com:9504", "http://onesdto.shop:2535", "http://azurhay.shop:8539", "http://slyfogx.shop:5776"]);
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, including targeted filters and exclusions tailored for an enterprise environment:
Scenario: Security Tool Updates via Scheduled Tasks
C:\Program Files\Remus Security\bin\remus_updater.exe and any network connections to the vendor’s update domain (e.g., *.remus-security.com) initiated by this specific executable during business hours (08:00–18:00).Scenario: Admin-Driven Threat Intelligence Ingestion
PowerShell.exe when executed by service accounts (e.g., DOMAIN\svc-siem-ingest) and specifically targeting file paths within the ingestion directory (e.g., C:\Temp\IOC_Ingestion\).Scenario: Cloud Backup and Replication Jobs