← Back to SOC feed Coverage →

ThreatFox: PureLogs Stealer IOCs

ioc-hunt HIGH ThreatFox
CommonSecurityLogDeviceNetworkEvents
infostealeriocthreatfoxwin-purelogs
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-11T11:00:01Z · Confidence: high

Hunt Hypothesis

This hunt targets adversary behavior involving the execution of known PureLogs Stealer indicators to detect credential theft and data exfiltration attempts within the environment. Proactively hunting for these specific IOCs in Azure Sentinel is critical because early identification allows the SOC team to isolate compromised assets before sensitive information is fully extracted by this high-severity threat actor.

IOC Summary

Malware Family: PureLogs Stealer Total IOCs: 3 IOC Types: ip:port

TypeValueThreat TypeFirst SeenConfidence
ip:port64[.]44[.]131[.]64:4242botnet_cc2026-07-1175%
ip:port67[.]21[.]33[.]92:6544botnet_cc2026-07-1175%
ip:port38[.]49[.]217[.]221:21001botnet_cc2026-07-1175%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureLogs Stealer
let malicious_ips = dynamic(["38.49.217.221", "64.44.131.64", "67.21.33.92"]);
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(["38.49.217.221", "64.44.131.64", "67.21.33.92"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc

Required Data Sources

Sentinel TableNotes
CommonSecurityLogEnsure this data connector is enabled
DeviceNetworkEventsEnsure this data connector is enabled

References

False Positive Guidance

Here are 4 specific false positive scenarios for the ThreatFox: PureLogs Stealer IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:

Original source: https://threatfox.abuse.ch/browse/malware/win.purelogs/