This detection rule identifies adversary activity by matching Azure Sentinel logs against nine specific Indicators of Compromise (IOCs) linked to the Remus threat actor. Proactively hunting for these signatures is critical because Remus employs sophisticated evasion tactics that often bypass standard perimeter defenses, requiring deep inspection of internal telemetry to prevent lateral movement and data exfiltration.
Malware Family: Remus Total IOCs: 9 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://tokjoza.shop:5200/events | botnet_cc | 2026-08-13 | 75% |
| url | hxxp://shkpiva.shop:5627/posts | botnet_cc | 2026-08-13 | 75% |
| url | hxxp://mrlketo.shop:8932/categories | botnet_cc | 2026-08-13 | 75% |
| url | hxxp://vexdico.shop:8539/notifications | botnet_cc | 2026-08-13 | 75% |
| url | hxxp://shkpiva.shop:5627/teams | botnet_cc | 2026-08-13 | 75% |
| url | hxxp://vexdico.shop:8539/reports | botnet_cc | 2026-08-13 | 75% |
| url | hxxp://shkpiva.shop:5627/images | botnet_cc | 2026-08-13 | 75% |
| ip:port | 72[.]62[.]195[.]74:8932 | botnet_cc | 2026-08-13 | 75% |
| url | hxxp://mrlketo.shop:8932/workspaces | botnet_cc | 2026-08-13 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["72.62.195.74"]);
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(["72.62.195.74"]);
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://tokjoza.shop:5200/events", "http://shkpiva.shop:5627/posts", "http://mrlketo.shop:8932/categories", "http://vexdico.shop:8539/notifications", "http://shkpiva.shop:5627/teams", "http://vexdico.shop:8539/reports", "http://shkpiva.shop:5627/images", "http://mrlketo.shop:8932/workspaces"]);
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 suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Antivirus Database Updates via Remus Endpoint
svc-remus-updater) and restrict it to the known IP range of the update server cluster. Additionally, filter out events where the process path matches the standard installation directory: C:\Program Files\Remus\Updater\*.exe.Scenario: Admin-Led Patch Deployment Using SCCM/Intune
ccmsetup.exe or msiexec.exe and the user context is SYSTEM or a specific deployment group account like AD-Deploy-Patch.Scenario: Automated Backup Job Execution