This detection rule identifies adversary activity by correlating four 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 enables the SOC team to rapidly contain potential lateral movement and data exfiltration before broader compromise occurs.
Malware Family: Remus Total IOCs: 4 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 134[.]209[.]42[.]122:9895 | botnet_cc | 2026-07-29 | 100% |
| ip:port | 185[.]53[.]179[.]146:7527 | botnet_cc | 2026-07-29 | 75% |
| url | hxxp://vifroup.biz:7527 | botnet_cc | 2026-07-29 | 75% |
| url | hxxp://strmer.top:5292 | botnet_cc | 2026-07-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["134.209.42.122", "185.53.179.146"]);
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(["134.209.42.122", "185.53.179.146"]);
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://vifroup.biz:7527", "http://strmer.top:5292"]);
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 3-5 specific false positive scenarios for the ThreatFox: Remus IOCs detection rule, along with suggested filters and exclusions tailored for a legitimate enterprise environment:
Scenario: Scheduled Antivirus Definition Updates via Microsoft Defender for Endpoint
MsMpEng.exe) and Parent Process (Task Scheduler), specifically filtering out alerts occurring between 02:00 and 04:00 UTC where the destination IP belongs to the Microsoft Azure CDN range.Scenario: Automated Backup Jobs Using Veeam or Commvault
Veeam.Backup.Service.exe or commvault.cmd and the destination port is 443. Additionally, add a filter for specific backup proxy server hostnames (e.g., Backup-Proxy-01) to whitelist them permanently.Scenario: Software Deployment via SCCM/Intune Configuration Manager