← 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-08-19T11: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 twenty-five emerging Indicators of Compromise (IOCs). Proactively hunting for these signals in Azure Sentinel is critical to uncover stealthy threats that evade traditional signature-based defenses, allowing the SOC team to isolate compromised assets before lateral movement occurs.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
urlhxxp://196[.]251[.]107[.]186/acovp/login.phpbotnet_cc2026-08-1950%
urlhxxps://relay-01-static.com/pages/login.phpbotnet_cc2026-08-1950%
urlhxxps://strang-02-static.com/pages/login.phpbotnet_cc2026-08-1950%
urlhxxps://adobeartsia.com/pages/login.phpbotnet_cc2026-08-1950%
urlhxxp://117[.]72[.]72[.]254:8888/supershell/loginbotnet_cc2026-08-1950%
urlhxxp://8[.]138[.]180[.]67:8888/supershell/loginbotnet_cc2026-08-1950%
urlhxxps://microsoft-account-service.debotnet_cc2026-08-1950%
urlhxxps://phish.sec.endpointas.combotnet_cc2026-08-1950%
urlhxxps://hubspot-account.debotnet_cc2026-08-1950%
urlhxxps://deutsche-post-info.debotnet_cc2026-08-1950%
urlhxxps://admin.perdania.cobotnet_cc2026-08-1950%
urlhxxps://ec2-43-218-88-179.ap-southeast-3.compute.amazonaws.combotnet_cc2026-08-1950%
urlhxxps://gophish.goin.orgbotnet_cc2026-08-1950%
urlhxxps://ec2-107-21-100-205.compute-1.amazonaws.combotnet_cc2026-08-1950%
urlhxxps://admin.csep-security.dkbotnet_cc2026-08-1950%
urlhxxps://ps.faircode.combotnet_cc2026-08-1950%
urlhxxps://appmail.dmsecurity.com.brbotnet_cc2026-08-1950%
urlhxxps://kakabrands.com/payload_delivery2026-08-1990%
urlhxxps://casaandaimemarica.com.br/payload_delivery2026-08-1990%
urlhxxps://one1ppp.com.pk/payload_delivery2026-08-1990%
urlhxxps://speed.hirebiz.pro/index-classic.htmlpayload_delivery2026-08-1990%
urlhxxps://autosolutionsconnect.com/payload_delivery2026-08-1990%
ip:port47[.]116[.]113[.]15:7443botnet_cc2026-08-19100%
urlhxxps://topqualityroofingsolutionsltd.co.uk/payload_delivery2026-08-1990%
ip:port37[.]77[.]150[.]193:6062botnet_cc2026-08-1975%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["37.77.150.193", "47.116.113.15"]);
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(["37.77.150.193", "47.116.113.15"]);
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://196.251.107.186/acovp/login.php", "https://relay-01-static.com/pages/login.php", "https://strang-02-static.com/pages/login.php", "https://adobeartsia.com/pages/login.php", "http://117.72.72.254:8888/supershell/login", "http://8.138.180.67:8888/supershell/login", "https://microsoft-account-service.de", "https://phish.sec.endpointas.com", "https://hubspot-account.de", "https://deutsche-post-info.de", "https://admin.perdania.co", "https://ec2-43-218-88-179.ap-southeast-3.compute.amazonaws.com", "https://gophish.goin.org", "https://ec2-107-21-100-205.compute-1.amazonaws.com", "https://admin.csep-security.dk", "https://ps.faircode.com", "https://appmail.dmsecurity.com.br", "https://kakabrands.com/", "https://casaandaimemarica.com.br/", "https://one1ppp.com.pk/", "https://speed.hirebiz.pro/index-classic.html", "https://autosolutionsconnect.com/", "https://topqualityroofingsolutionsltd.co.uk/"]);
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 4 specific false positive scenarios for the ThreatFox: Unknown malware IOCs detection rule, along with targeted exclusion strategies suitable for an enterprise environment:

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