This detection rule identifies adversary activity by correlating specific Indicators of Compromise (IOCs) linked to the Remus threat actor within Azure Sentinel logs. Proactively hunting for these signals is critical because early identification of Remus-associated IOCs enables the SOC team to rapidly contain potential lateral movement and data exfiltration before they escalate into a broader incident.
Malware Family: Remus Total IOCs: 2 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://kupzovo.shop:7567/products | botnet_cc | 2026-08-19 | 75% |
| ip:port | 188[.]245[.]219[.]133:8137 | botnet_cc | 2026-08-19 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["188.245.219.133"]);
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(["188.245.219.133"]);
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://kupzovo.shop:7567/products"]);
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 specific false positive scenarios and corresponding filters for the ThreatFox: Remus IOCs detection rule in an enterprise environment:
Endpoint Protection Policy Updates via CrowdStrike Falcon
csfalcon.exe) automatically downloads updated IOC definitions from the ThreatGraph/Remus feed during its scheduled daily policy refresh window (e.g., 02:00 AM UTC), triggering a network connection to Remus endpoints.csfalcon.exe and the destination port matches the known CrowdStrike update ports, or add the specific hash of the Falcon sensor service to the exclusion list for this rule.Automated Threat Intelligence Ingestion by Splunk Enterprise Security
splunk-indexer or splunk-forwarder, and filter out traffic where the User-Agent string contains “Splunk-Add-on-ThreatIntel”.Microsoft Defender for Endpoint (MDE) Cloud Protection Sync
MsMpEng.exe) queries Remus IOCs to update its local threat intelligence database as part of the Windows Update scheduled task, specifically during the “Cloud Block” synchronization phase.MsMpEng.exe where the destination IP belongs to the Microsoft Azure cloud range or specific Remus API endpoints known to be used by MDE integrations.Custom Python Script for Daily Threat Dashboard Generation