This detection rule identifies the presence of Stealc malware, which establishes covert communication channels to exfiltrate sensitive credentials and system data following initial compromise via phishing vectors. Proactively hunting for these indicators within Azure Sentinel is critical to rapidly isolate infected endpoints and prevent unauthorized data leakage before adversaries can establish persistent access or escalate privileges.
Malware Family: Stealc Total IOCs: 2 IOC Types: url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://43[.]228[.]157[.]66 | botnet_cc | 2026-07-29 | 75% |
| url | hxxp://2[.]27[.]5[.]214 | botnet_cc | 2026-07-29 | 75% |
// Hunt for access to known malicious URLs
// Source: ThreatFox - Stealc
let malicious_urls = dynamic(["http://43.228.157.66", "http://2.27.5.214"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
UrlClickEvents | Ensure this data connector is enabled |
Here are 4 specific false positive scenarios for the ThreatFox: Stealc IOCs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Legitimate Phishing Simulation Platforms
*.knowbe4.com, *.proofpoint.com) and specific destination IPs associated with their content delivery networks. Additionally, exclude alerts where the source user account is a member of the “Security Training Admins” group.Scenario: Scheduled Backup and Exfiltration Jobs
Veeam.Backup.Service.exe, AzureBackupAgent.exe) when they initiate connections to approved cloud storage endpoints.Scenario: Endpoint Management and Patching Tools