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

Hunt Hypothesis

This hunt hypothesis targets adversary behavior involving the deployment of the PureLogs Stealer malware to exfiltrate sensitive credentials and data from endpoints within the Azure Sentinel environment. Proactive hunting for these specific IOCs is critical because the stealer’s high severity indicates a significant risk of lateral movement and data compromise that may evade standard signature-based detections until after initial infection occurs.

IOC Summary

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

TypeValueThreat TypeFirst SeenConfidence
ip:port103[.]219[.]153[.]251:8443botnet_cc2026-07-2875%
ip:port203[.]159[.]90[.]151:4242botnet_cc2026-07-2875%

KQL: Ip Hunt

// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureLogs Stealer
let malicious_ips = dynamic(["103.219.153.251", "203.159.90.151"]);
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(["103.219.153.251", "203.159.90.151"]);
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 the false positive scenarios and corresponding filters for the ThreatFox: PureLogs Stealer IOCs detection rule:

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