This hunt targets adversary behavior involving the execution of known PureLogs Stealer indicators to identify active credential and data exfiltration campaigns within the environment. Proactively hunting for these specific IOCs in Azure Sentinel is critical because early detection of this stealer can prevent significant identity compromise before lateral movement occurs across cloud resources.
Malware Family: PureLogs Stealer Total IOCs: 3 IOC Types: ip:port, domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 173[.]231[.]53[.]193:4242 | botnet_cc | 2026-07-09 | 75% |
| ip:port | 216[.]250[.]250[.]88:8443 | botnet_cc | 2026-07-09 | 75% |
| domain | benbeloorg.duckdns.org | botnet_cc | 2026-07-09 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - PureLogs Stealer
let malicious_ips = dynamic(["173.231.53.193", "216.250.250.88"]);
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(["173.231.53.193", "216.250.250.88"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - PureLogs Stealer
let malicious_domains = dynamic(["benbeloorg.duckdns.org"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: PureLogs Stealer IOCs detection rule in an enterprise environment, along with suggested filters or exclusions:
Endpoint Security Agent Telemetry Updates
Process Name matches known security agents (e.g., csagent.exe, MsMpEng.exe, SentinelOneAgent.exe) and the Parent Process is the specific update service or scheduler associated with that vendor.IT Asset Management & Software Inventory Scans
User Account names belonging to service accounts (e.g., svc-asset-scan, SCCM-Agent) and restrict alerts to non-business hours or specific scheduled job windows defined in the task scheduler.Third-Party Patch Management Deployments