← 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-20T11:00:00Z · Confidence: high

Hunt Hypothesis

This rule detects potential data exfiltration and command-and-control activity by identifying network connections to known malicious IOCs associated with phishing-delivered malware. Proactively hunting for these indicators in Azure Sentinel allows the SOC team to identify compromised assets and disrupt adversary persistence before lateral movement or significant data loss occurs.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port46[.]36[.]40[.]185:7443botnet_cc2026-09-2075%
ip:port167[.]235[.]0[.]162:443botnet_cc2026-09-2075%
urlhxxps://167[.]235[.]0[.]162/api/forensicsbotnet_cc2026-09-20100%
ip:port36[.]248[.]232[.]184:7443botnet_cc2026-09-2075%
urlhxxps://the.earth.li/~sgtatham/putty/0[.]85/w64/putty.exepayload_delivery2026-09-2090%
sha256_hash28e0c4d5bc6675537ba47c6529877a3194a29585fb86477f66bf13c79252d2f0payload2026-09-20100%
sha256_hash7d55a90710b8e79283efd756e8d3423fc23e0dcf742d6027b1a2a1b9d02a9c16payload2026-09-20100%
sha256_hash79a47c33335fe1ed871a23cf7972652ee08a3ec0afed1c2dc6b5a8df675e153dpayload2026-09-20100%
sha256_hashffe04bc05a56f78b1273876cf17ded8df1aa3da5a15deb17dce99a3e206eb705payload2026-09-20100%
sha256_hasha151d3f4f2422531f30a843ffb35479596c86722bb103bdf8591105687f9b125payload2026-09-20100%
sha256_hashc1c122869f46aaf8c4e90f3132c93a801c853244c756966952d0bf19241cf084payload2026-09-20100%
sha256_hash2bcc91fdedb8c583a9fe883be9ad453333a1bba0fdf655474982db3cbb8e7a74payload2026-09-20100%
ip:port169[.]58[.]248[.]162:443botnet_cc2026-09-20100%
domaindigital.digitaldatainsights.orgpayload_delivery2026-09-2075%
urlhxxp://195[.]24[.]237[.]240/.x/black3payload_delivery2026-09-2075%
urlhxxp://178[.]16[.]55[.]93/Bin/ScreenConnect.ClientSetup.exepayload_delivery2026-09-2085%
ip:port103[.]170[.]217[.]184:8787botnet_cc2026-09-2050%
urlhxxps://squidscript.com/payload_delivery2026-09-2090%
domainsquidscript.compayload_delivery2026-09-2090%
urlhxxps://demonsbasement.com/payload_delivery2026-09-1990%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown malware
let malicious_ips = dynamic(["167.235.0.162", "36.248.232.184", "103.170.217.184", "46.36.40.185", "169.58.248.162"]);
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(["167.235.0.162", "36.248.232.184", "103.170.217.184", "46.36.40.185", "169.58.248.162"]);
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(["digital.digitaldatainsights.org", "squidscript.com"]);
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://167.235.0.162/api/forensics", "https://the.earth.li/~sgtatham/putty/0.85/w64/putty.exe", "http://195.24.237.240/.x/black3", "http://178.16.55.93/Bin/ScreenConnect.ClientSetup.exe", "https://squidscript.com/", "https://demonsbasement.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(["28e0c4d5bc6675537ba47c6529877a3194a29585fb86477f66bf13c79252d2f0", "7d55a90710b8e79283efd756e8d3423fc23e0dcf742d6027b1a2a1b9d02a9c16", "79a47c33335fe1ed871a23cf7972652ee08a3ec0afed1c2dc6b5a8df675e153d", "ffe04bc05a56f78b1273876cf17ded8df1aa3da5a15deb17dce99a3e206eb705", "a151d3f4f2422531f30a843ffb35479596c86722bb103bdf8591105687f9b125", "c1c122869f46aaf8c4e90f3132c93a801c853244c756966952d0bf19241cf084", "2bcc91fdedb8c583a9fe883be9ad453333a1bba0fdf655474982db3cbb8e7a74"]);
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/