This detection identifies potential Remus ransomware activity by monitoring for known Indicators of Compromise (IOCs) associated with its initial infection and lateral movement phases. Proactively hunting for these signals in Azure Sentinel is critical to enable rapid containment before the adversary encrypts critical assets, thereby minimizing operational downtime and data loss.
Malware Family: Remus Total IOCs: 3 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 85[.]31[.]60[.]169:2535 | botnet_cc | 2026-08-07 | 100% |
| ip:port | 2[.]56[.]244[.]52:9022 | botnet_cc | 2026-08-07 | 100% |
| url | hxxp://touggch.click:9022 | botnet_cc | 2026-08-07 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["85.31.60.169", "2.56.244.52"]);
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(["85.31.60.169", "2.56.244.52"]);
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://touggch.click:9022"]);
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 4 specific false positive scenarios for the ThreatFox: Remus IOCs detection rule in an enterprise environment, including targeted filters and exclusions:
Scenario: Antivirus Engine Scanning of Ransomware Definitions
MsMpEng.exe, FalconSensorService.exe) and exclude any file paths located within the vendor’s specific update directories (e.g., C:\ProgramData\Microsoft\Windows Defender\Updates).Scenario: Scheduled Backup Jobs Processing Encrypted Archives
.remus or specific encrypted extensions), the detection engine may flag this legitimate encryption activity as suspicious ransomware behavior.VeeamBRService.exe, commvault_agent.exe) and filter out events occurring within designated backup windows (e.g., 02:00–06:00 local time) where file creation rates exceed a specific threshold.Scenario: IT Admin Deployment of Patched Applications via SCCM