← Back to SOC feed Coverage →

ThreatFox: Unknown malware IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEventsUrlClickEvents
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-07-17T11:00:00Z · Confidence: high

Hunt Hypothesis

This hunt hypothesis targets adversary behavior characterized by the presence of ten distinct Indicators of Compromise (IOCs) linked to unknown malware, suggesting a potential early-stage infection or lateral movement within the network. The SOC team should proactively execute this hunt in Azure Sentinel to identify and isolate these novel threats before they escalate into widespread incidents, ensuring rapid response against emerging malware variants that may not yet be covered by standard signature-based detections.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port156[.]38[.]149[.]102:7443botnet_cc2026-07-17100%
urlhxxp://41[.]216[.]189[.]236/nz.shpayload_delivery2026-07-1775%
urlhxxps://chorg.xyz/payload_delivery2026-07-1790%
urlhxxps://robinhrood.com/payload_delivery2026-07-1790%
urlhxxps://strastergy.com/payload_delivery2026-07-1790%
urlhxxps://stogagirlssoccer.com/payload_delivery2026-07-1790%
ip:port80[.]240[.]21[.]145:7443botnet_cc2026-07-1675%
ip:port64[.]177[.]120[.]228:7443botnet_cc2026-07-1675%
ip:port199[.]247[.]22[.]101:7443botnet_cc2026-07-1675%
ip:port188[.]166[.]40[.]236:7443botnet_cc2026-07-1675%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["188.166.40.236", "199.247.22.101", "64.177.120.228", "80.240.21.145", "156.38.149.102"]);
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(["188.166.40.236", "199.247.22.101", "64.177.120.228", "80.240.21.145", "156.38.149.102"]);
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(["http://41.216.189.236/nz.sh", "https://chorg.xyz/", "https://robinhrood.com/", "https://strastergy.com/", "https://stogagirlssoccer.com/"]);
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

Here are specific false positive scenarios for the ThreatFox: Unknown malware IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:

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