This hunt targets the presence of specific indicators of compromise associated with the Remus threat actor, which may signal an active intrusion or persistent foothold within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical to identify and isolate compromised assets before the adversary can leverage them for lateral movement or data exfiltration.
Malware Family: Remus Total IOCs: 4 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://smaring.shop:9895/exports | botnet_cc | 2026-09-07 | 75% |
| url | hxxp://trencts.shop:8592/documents | botnet_cc | 2026-09-07 | 75% |
| url | hxxp://clouven.click:8527/articles | botnet_cc | 2026-09-07 | 75% |
| ip:port | 51[.]195[.]111[.]253:7572 | botnet_cc | 2026-09-07 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["51.195.111.253"]);
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(["51.195.111.253"]);
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://smaring.shop:9895/exports", "http://trencts.shop:8592/documents", "http://clouven.click:8527/articles"]);
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 |
remus utility (or a similarly named internal tool) for database replication testing. The IOC matches the specific hash or path of this legitimate binary.
dockerd or containerd-shim, or filter by image name if the container registry tag matches the known good version (e.g., myapp/remus:1.2.3).\Quarantine\, \Isolation\, or \CrowdStrike\Quarantine\ depending on the EDR vendor in use.%TEMP% or /tmp) to verify detection coverage before deploying the new rule.
C:\Users\<user>\AppData\Local\Temp, /tmp, /var/tmp) if the file age is less than 24 hours and the parent process is a known admin tool like PowerShell.exe or bash.