← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsUrlClickEvents
iocthreatfoxunknown
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-08-27T11:00:00Z · Confidence: high

Hunt Hypothesis

This detection rule identifies potential unknown malware infections by correlating network and endpoint telemetry against a curated set of seventeen distinct Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to uncover stealthy threats that evade signature-based defenses, allowing the SOC team to isolate compromised assets before lateral movement or data exfiltration occurs.

IOC Summary

Malware Family: Unknown malware Total IOCs: 17 IOC Types: md5_hash, url, ip:port

TypeValueThreat TypeFirst SeenConfidence
urlhxxps://vesinhmoitruonghy.com/payload_delivery2026-08-2790%
urlhxxps://www.herreraalvaradoasociados.com/payload_delivery2026-08-2790%
ip:port45[.]61[.]170[.]105:7443botnet_cc2026-08-27100%
urlhxxps://www.avi-wallpapers.co.il/payload_delivery2026-08-2790%
ip:port62[.]238[.]110[.]216:443botnet_cc2026-08-2775%
urlhxxps://tempsgraphie.com/payload_delivery2026-08-2790%
urlhxxps://lootguys.com/payload_delivery2026-08-2790%
urlhxxps://gascreative.com/payload_delivery2026-08-2790%
ip:port27[.]124[.]17[.]164:8801botnet_cc2026-08-2775%
ip:port27[.]124[.]17[.]173:8801botnet_cc2026-08-2775%
ip:port47[.]242[.]62[.]96:15800botnet_cc2026-08-2775%
ip:port49[.]235[.]130[.]208:888botnet_cc2026-08-27100%
ip:port67[.]216[.]197[.]83:8443botnet_cc2026-08-27100%
md5_hashac9d11435d475086b80ebe7d6943fc83payload2026-08-27100%
md5_hashede70699452c4bf8ec5adef4aff6ba44payload2026-08-27100%
ip:port135[.]136[.]135[.]54:443botnet_cc2026-08-2775%
urlhxxps://ratatwista.com:50051/agent-control/uploadbotnet_cc2026-08-27100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["45.61.170.105", "27.124.17.173", "49.235.130.208", "62.238.110.216", "67.216.197.83", "135.136.135.54", "47.242.62.96", "27.124.17.164"]);
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(["45.61.170.105", "27.124.17.173", "49.235.130.208", "62.238.110.216", "67.216.197.83", "135.136.135.54", "47.242.62.96", "27.124.17.164"]);
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 - Unknown malware
let malicious_urls = dynamic(["https://vesinhmoitruonghy.com/", "https://www.herreraalvaradoasociados.com/", "https://www.avi-wallpapers.co.il/", "https://tempsgraphie.com/", "https://lootguys.com/", "https://gascreative.com/", "https://ratatwista.com:50051/agent-control/upload"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc

KQL: Hash Hunt

// Hunt for files matching known malicious hashes
// Source: ThreatFox - Unknown malware
let malicious_hashes = dynamic(["ac9d11435d475086b80ebe7d6943fc83", "ede70699452c4bf8ec5adef4aff6ba44"]);
DeviceFileEvents
| where SHA256 in (malicious_hashes) or SHA1 in (malicious_hashes) or MD5 in (malicious_hashes)
| project Timestamp, DeviceName, FileName, FolderPath, SHA256, InitiatingProcessFileName
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceFileEventsEnsure 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/unknown/