This hunt targets the presence of specific Indicators of Compromise (IOCs) linked to the Remus threat actor, which may signal an active intrusion or persistent backdoor within the environment. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify and isolate compromised assets before the adversary can leverage them for lateral movement or data exfiltration.
Malware Family: Remus Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 75[.]148[.]178[.]13:9210 | botnet_cc | 2026-09-11 | 100% |
| ip:port | 147[.]182[.]203[.]222:9932 | botnet_cc | 2026-09-11 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["75.148.178.13", "147.182.203.222"]);
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(["75.148.178.13", "147.182.203.222"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
C:\Apps\Inventory\bin\helper.dll) and its parent process (java.exe or the specific service name) if the binary hash matches a known good version used exclusively by that application.Nightly_Log_Cleanup) and the associated user account (e.g., svc-maintenance) when the IOC is observed in the context of a scheduled job execution rather than interactive user activity.dev-remus-test) or on designated jump hosts/VMs tagged with env=dev or purpose=iotesting in the asset inventory.vendor_diag.exe from a specific IT service provider) may include a component that matches a Remus IOC due to shared codebases or similar naming conventions