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

Hunt Hypothesis

This hunt detects adversary behavior involving the deployment of PureLogs Stealer malware by monitoring for specific Indicators of Compromise (IOCs) known to facilitate data exfiltration and credential theft. A SOC team should proactively hunt for these signals in Azure Sentinel to identify early-stage infections before sensitive information is compromised, given the high severity associated with this stealer’s ability to silently extract critical assets from endpoints.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port142[.]132[.]253[.]231:8888botnet_cc2026-08-1075%
ip:port91[.]219[.]238[.]166:8443botnet_cc2026-08-1099%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureLogs Stealer
let malicious_ips = dynamic(["91.219.238.166", "142.132.253.231"]);
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(["91.219.238.166", "142.132.253.231"]);
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 specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: PureLogs Stealer IOCs detection rule in an enterprise environment:

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