This hunt detects adversary behavior involving the deployment of PureLogs Stealer malware by monitoring for specific indicators of compromise that target sensitive data exfiltration and credential theft. A SOC team should proactively hunt for these IOCs in Azure Sentinel to identify early-stage infections before attackers can establish persistence or escalate privileges within the cloud environment.
Malware Family: PureLogs Stealer Total IOCs: 6 IOC Types: domain
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| domain | voucher-01-static.com | botnet_cc | 2026-07-30 | 100% |
| domain | relay-01-static.com | botnet_cc | 2026-07-30 | 100% |
| domain | relay-02-static.com | botnet_cc | 2026-07-30 | 100% |
| domain | strang-02-static.com | botnet_cc | 2026-07-30 | 100% |
| domain | adobeartsia.com | botnet_cc | 2026-07-30 | 100% |
| domain | boltiviersoul.com | botnet_cc | 2026-07-30 | 100% |
// Hunt for DNS queries to known malicious domains
// Source: ThreatFox - PureLogs Stealer
let malicious_domains = dynamic(["voucher-01-static.com", "relay-01-static.com", "relay-02-static.com", "strang-02-static.com", "adobeartsia.com", "boltiviersoul.com"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses, QueryType
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
DnsEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: PureLogs Stealer IOCs detection rule, along with targeted filtering strategies:
Scenario: Enterprise Backup Agents Scanning Log Directories
Veeam.Backup.Service or Commvault.ClientService accounts, and filter out alerts where the parent process is a known backup service (e.g., vbr.exe, commagentd) operating on paths containing \Logs\ or \Archive\.Scenario: Endpoint Detection & Response (EDR) Telemetry Collection
FalconSensor.exe, MsMpEng.exe (Microsoft Defender), and SentinelOneAgent.exe. Additionally, exclude alerts where the execution path resides within the vendor’s installation directory (e.g., C:\Program Files\CrowdStrike\).Scenario: Automated Compliance Reporting Scripts