This detection identifies adversary activity linked to the Remus threat actor by matching network and endpoint telemetry against specific Indicators of Compromise (IOCs) known to facilitate initial access or lateral movement. A proactive hunt is essential within Azure Sentinel to rapidly identify early-stage infections from this high-severity campaign, enabling swift containment before the adversary establishes persistence or exfiltrates sensitive data.
Malware Family: Remus Total IOCs: 2 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://smarwth.biz:5292 | botnet_cc | 2026-07-28 | 75% |
| ip:port | 84[.]247[.]129[.]0:8528 | botnet_cc | 2026-07-28 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["84.247.129.0"]);
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(["84.247.129.0"]);
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://smarwth.biz: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 specific false positive scenarios and corresponding filters for the ThreatFox: Remus IOCs detection rule in an enterprise environment:
Scenario: Automated Endpoint Protection Updates
FalconService.exe, MsMpEng.exe) when connecting to known update domains (e.g., *.crowdstrike.com, *.microsoft.com).Scenario: Scheduled Backup and Archiving Jobs
NT SERVICE\VeeamTransportService) and restrict the filter to the specific scheduled job window (e.g., 02:00–04:00 local time) on known backup servers.Scenario: Internal Development Build Pipelines