← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceFileEventsDeviceNetworkEventsDnsEventsUrlClickEvents
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-09-25T11:00:00Z · Confidence: high

Hunt Hypothesis

This hypothesis targets the presence of 42 known indicators of compromise associated with unidentified malware, suggesting that an adversary may have successfully deployed a novel or unclassified payload within the environment. Proactively hunting for these IOCs in Azure Sentinel is critical to identify early-stage intrusions before they escalate, ensuring the SOC can isolate affected assets and investigate the origin of the unknown threat.

IOC Summary

Malware Family: Unknown malware Total IOCs: 42 IOC Types: url, domain, sha256_hash, ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port99[.]92[.]203[.]162:443botnet_cc2026-09-2575%
ip:port189[.]128[.]156[.]178:7443botnet_cc2026-09-2575%
urlhxxps://ahrmn.com/payload_delivery2026-09-2590%
ip:port122[.]10[.]71[.]108:443botnet_cc2026-09-25100%
sha256_hash167c1bb2ab7f26ec474ed6862d3f84b966c7f7a45dcfcb37a0cbc629651fd0f6payload2026-09-2575%
sha256_hash1921fbac7491fd43f197b13d471e7faab8fd41273115ce36ba3731b74934d01bpayload2026-09-2575%
domainai.lzgqin.cc.cdpayload_delivery2026-09-2575%
urlhxxps://www.armoniamiddleeast.ae/ChromeSetup.exepayload_delivery2026-09-2590%
ip:port31[.]169[.]125[.]79:46543botnet_cc2026-09-2575%
urlhxxp://idcool.codes/7zpayload_delivery2026-09-2590%
domaindenise-rennhardkurz.chpayload_delivery2026-09-2575%
ip:port217[.]217[.]97[.]60:8093botnet_cc2026-09-25100%
urlhxxps://marioopy.site:7443/botnet_cc2026-09-25100%
ip:port87[.]120[.]244[.]231:8888botnet_cc2026-09-25100%
ip:port87[.]120[.]244[.]231:8443botnet_cc2026-09-25100%
ip:port87[.]120[.]244[.]231:3002botnet_cc2026-09-25100%
ip:port87[.]120[.]244[.]231:3001botnet_cc2026-09-25100%
ip:port87[.]120[.]244[.]231:22botnet_cc2026-09-25100%
ip:port87[.]120[.]244[.]231:80botnet_cc2026-09-25100%
ip:port122[.]10[.]71[.]108:50918botnet_cc2026-09-25100%
ip:port122[.]10[.]71[.]108:8888botnet_cc2026-09-25100%
ip:port122[.]10[.]71[.]108:34890botnet_cc2026-09-25100%
ip:port122[.]10[.]71[.]108:888botnet_cc2026-09-25100%
ip:port122[.]10[.]71[.]108:80botnet_cc2026-09-25100%
ip:port122[.]10[.]24[.]106:50918botnet_cc2026-09-25100%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["99.92.203.162", "87.120.244.231", "122.10.24.106", "217.217.97.60", "189.128.156.178", "122.10.71.108", "31.169.125.79"]);
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(["99.92.203.162", "87.120.244.231", "122.10.24.106", "217.217.97.60", "189.128.156.178", "122.10.71.108", "31.169.125.79"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

KQL: Domain Hunt

// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - Unknown malware
let malicious_domains = dynamic(["ai.lzgqin.cc.cd", "denise-rennhardkurz.ch"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc

KQL: Url Hunt

// Hunt for access to known malicious URLs
// Source: ThreatFox - Unknown malware
let malicious_urls = dynamic(["https://ahrmn.com/", "https://www.armoniamiddleeast.ae/ChromeSetup.exe", "http://idcool.codes/7z", "https://marioopy.site:7443/", "https://e-bizsoft.al/", "https://levijohnsonphotography.com/", "https://ikcs.com.tn/", "https://tlssnv.com/", "https://kurtvandemotter.com/", "https://listingmetro.com/", "https://solarsavercanada.com/", "https://unboundcreativepodcast.com/", "https://tasaam.com/", "https://taxisdesvignobles-sancerre.fr/", "https://rooshnaf.com/", "https://www.rivistalibera.it/", "https://nordicbeehive.se/", "https://bet303.games/", "https://modestorecovery.com/", "https://marcynunes.com/", "https://tindevil.com/"]);
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(["167c1bb2ab7f26ec474ed6862d3f84b966c7f7a45dcfcb37a0cbc629651fd0f6", "1921fbac7491fd43f197b13d471e7faab8fd41273115ce36ba3731b74934d01b"]);
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
DnsEventsEnsure this data connector is enabled
UrlClickEventsEnsure this data connector is enabled

References

False Positive Guidance

Original source: https://threatfox.abuse.ch/browse/malware/unknown/