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.
Malware Family: PureLogs Stealer Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 142[.]132[.]253[.]231:8888 | botnet_cc | 2026-08-10 | 75% |
| ip:port | 91[.]219[.]238[.]166:8443 | botnet_cc | 2026-08-10 | 99% |
// 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
// 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
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding exclusion strategies for the ThreatFox: PureLogs Stealer IOCs detection rule in an enterprise environment:
Scenario: Legitimate Endpoint Protection Scanning
process_name matches known EDR binaries (e.g., FalconSensor.exe, MsMpEng.exe) or where the parent process is the EDR service itself. Additionally, filter out events occurring during defined “Maintenance Windows” (e.g., 02:00–04:00 UTC) if the IOCs are static hashes known to be benign in your environment.Scenario: Scheduled Backup and Archiving Jobs
svc_backup_veeam, SYSTEM) or specific task paths (e.g., \Microsoft\Windows\Backup). If the detection logic relies on file hash matching, add a whitelist of known backup job hashes that overlap with the