← Back to SOC feed Coverage →

ThreatFox: Remus IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsUrlClickEvents
iocthreatfoxwin-remus
This rule was pulled from an open-source repository and enriched with AI. Validate in a test environment before deploying to production.
View original rule at ThreatFox →
Retrieved: 2026-09-08T23:00:00Z · Confidence: high

Hunt Hypothesis

This hunt targets the presence of 17 known indicators of compromise linked to the Remus threat actor, which often leverage specific network artifacts or file hashes to establish persistence or exfiltrate data. Proactively hunting for these IOCs in Azure Sentinel allows the SOC to identify stealthy intrusions before they escalate, ensuring rapid containment of high-severity threats that may bypass standard behavioral detections.

IOC Summary

Malware Family: Remus Total IOCs: 17 IOC Types: ip:port, url

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://quicbud.shop:7647/tasksbotnet_cc2026-09-0875%
urlhxxp://smaring.shop:9895/collectionsbotnet_cc2026-09-0875%
urlhxxp://trencts.shop:8592/notificationsbotnet_cc2026-09-0875%
urlhxxp://quicbud.shop:7647/foldersbotnet_cc2026-09-0875%
urlhxxp://trencts.shop:8592/workspacesbotnet_cc2026-09-0875%
urlhxxp://futlink.click:4326/productsbotnet_cc2026-09-0875%
urlhxxp://quicbud.shop:7647/categoriesbotnet_cc2026-09-0875%
urlhxxp://trencts.shop:8592/messagesbotnet_cc2026-09-0875%
urlhxxp://doresxa.click:6271/videosbotnet_cc2026-09-0875%
urlhxxp://quicbud.shop:7647/invoicesbotnet_cc2026-09-0875%
urlhxxp://trencts.shop:8592/projectsbotnet_cc2026-09-0875%
urlhxxp://futlink.click:4326/accountsbotnet_cc2026-09-0875%
ip:port2[.]25[.]206[.]107:4326botnet_cc2026-09-08100%
ip:port137[.]184[.]108[.]14:9895botnet_cc2026-09-08100%
urlhxxp://smaring.shop:9895/customersbotnet_cc2026-09-0875%
urlhxxp://trencts.shop:8592/importsbotnet_cc2026-09-0875%
urlhxxp://drrizon.click:6271/documentsbotnet_cc2026-09-0875%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Remus
let malicious_ips = dynamic(["137.184.108.14", "2.25.206.107"]);
CommonSecurityLog
| where DestinationIP in (malicious_ips) or SourceIP in (malicious_ips)
| project TimeGenerated, SourceIP, DestinationIP, DestinationPort, DeviceAction, Activity
| order by TimeGenerated desc

KQL: Ip Hunt Device

// Hunt in Defender for Endpoint network events
let malicious_ips = dynamic(["137.184.108.14", "2.25.206.107"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Remus
let malicious_urls = dynamic(["http://quicbud.shop:7647/tasks", "http://smaring.shop:9895/collections", "http://trencts.shop:8592/notifications", "http://quicbud.shop:7647/folders", "http://trencts.shop:8592/workspaces", "http://futlink.click:4326/products", "http://quicbud.shop:7647/categories", "http://trencts.shop:8592/messages", "http://doresxa.click:6271/videos", "http://quicbud.shop:7647/invoices", "http://trencts.shop:8592/projects", "http://futlink.click:4326/accounts", "http://smaring.shop:9895/customers", "http://trencts.shop:8592/imports", "http://drrizon.click:6271/documents"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/win.remus/