This detection rule identifies adversary activity by matching network and endpoint telemetry against four specific Indicators of Compromise (IOCs) linked to the Remus threat actor. Proactively hunting for these IOCs in Azure Sentinel is critical because early identification of Remus-associated artifacts enables rapid containment of potential lateral movement or 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 | 104[.]168[.]123[.]242:3276 | botnet_cc | 2026-08-02 | 100% |
| ip:port | 84[.]247[.]129[.]0:2930 | botnet_cc | 2026-08-02 | 100% |
| ip:port | 200[.]9[.]154[.]45:8539 | botnet_cc | 2026-08-02 | 100% |
| url | hxxp://sxarth.click:3276 | botnet_cc | 2026-08-02 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["200.9.154.45", "84.247.129.0", "104.168.123.242"]);
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(["200.9.154.45", "84.247.129.0", "104.168.123.242"]);
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://sxarth.click:3276"]);
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 exclusion strategies for the ThreatFox: Remus IOCs detection rule in an enterprise environment:
Scenario: Scheduled Antivirus Definition Updates via Remus Agent
falcon.sys or MsMpEng.exe) combined with a Time Window. Configure the rule to ignore alerts occurring between 02:00 AM and 04:00 AM local time for these specific processes, as this aligns with standard maintenance windows.Scenario: Automated Software Deployment via SCCM/Intune
ccmsetup.exe or msiexec) executes scripts that generate network traffic and registry changes identical to the threat IOCs.\Program Files\Microsoft Configuration Manager\ or matches the specific IP subnet assigned to the “Patch Management Server” (e.g., 10.20.5.0/24).Scenario: Legacy Backup Job Execution