This hunt targets the initial access and propagation phases of the Remus ransomware family, which typically leverages malicious URLs and stolen credentials to deliver payloads and encrypt files. Proactively hunting for these indicators in Azure Sentinel allows the SOC to identify compromised endpoints or anomalous network traffic before the encryption process begins, thereby reducing the potential impact of the high-severity threat.
Malware Family: Remus Total IOCs: 5 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://beautck.click:8291/orders | botnet_cc | 2026-09-17 | 75% |
| url | hxxp://kipthen.shop:9932/tokens | botnet_cc | 2026-09-17 | 75% |
| url | hxxp://fuarnpp.shop:5627/subscriptions | botnet_cc | 2026-09-17 | 75% |
| url | hxxp://tfoyses.shop:3452/tags | botnet_cc | 2026-09-17 | 75% |
| url | hxxp://kipthen.shop:9932/accounts | botnet_cc | 2026-09-17 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Remus
let malicious_urls = dynamic(["http://beautck.click:8291/orders", "http://kipthen.shop:9932/tokens", "http://fuarnpp.shop:5627/subscriptions", "http://tfoyses.shop:3452/tags", "http://kipthen.shop:9932/accounts"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
UrlClickEvents | Ensure this data connector is enabled |
Scenario: Legitimate Software Deployment via Remus-Associated CDN or Domain
ansible-playbook.exe, puppet-agent, or python.exe running from the deployment directory) and the destination port is 443 (HTTPS) or 80 (HTTP), provided the source user account is a service account (e.g., svc-deploy, admin-automation).Scenario: Scheduled Backup or Sync Job Accessing IOCs
vssadmin.exe, wbadmin.exe, rsync, robocopy.exe, or python.exe with a backup-related command line) and the scheduled task name contains keywords like “backup,” “sync,” or “archive.”Scenario: Developer or QA Environment Testing