This detection rule identifies adversary activity by correlating three specific Indicators of Compromise (IOCs) linked to the Remus threat actor within Azure Sentinel logs. Proactively hunting for these IOCs is critical because early identification of Remus-associated artifacts allows the SOC team to rapidly contain potential lateral movement and data exfiltration before the adversary establishes a persistent foothold in the environment.
Malware Family: Remus Total IOCs: 3 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://zokrie.click:4536 | botnet_cc | 2026-08-03 | 75% |
| ip:port | 185[.]194[.]218[.]82:4930 | botnet_cc | 2026-08-03 | 100% |
| url | hxxp://voihxd.xyz:7528 | botnet_cc | 2026-08-03 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["185.194.218.82"]);
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(["185.194.218.82"]);
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://zokrie.click:4536", "http://voihxd.xyz:7528"]);
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 4 specific false positive scenarios for the ThreatFox: Remus IOCs detection rule, along with targeted exclusion strategies:
Scheduled Endpoint Protection Scans by Defender Antivirus
Microsoft Defender Antivirus Service) that queries the local threat intelligence feed. This process often generates network connections or file hashes matching the Remus IOCs, particularly if the enterprise uses a cloud-connected threat intelligence layer that shares signatures with ThreatFox.MsMpEng.exe (or Antimalware Service Executable) and restrict it to specific scheduled window times (e.g., 02:00–04:00 UTC) or exclude traffic originating from the internal IP range of the Endpoint Management Server.Automated Patch Deployment via SCCM/Intune
ccmexec.exe (SCCM) or IntuneAgent.exe, and specifically filter out file paths containing \Windows\CCM\ or \Program Files (x86)\Microsoft Intune Agent\.Enterprise Backup Jobs Using Veeam or Commvault