This hypothesis posits that adversaries are actively deploying Stealc infostealer malware within the Azure environment to exfiltrate sensitive credentials and browser data using known Indicators of Compromise (IOCs). The SOC team should proactively hunt for these specific IOCs in Sentinel because early detection of this high-severity threat is critical to preventing lateral movement and mitigating the risk of widespread credential theft before automated defenses trigger.
Malware Family: Stealc Total IOCs: 2 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 176[.]65[.]144[.]73:80 | botnet_cc | 2026-06-29 | 100% |
| url | hxxp://176[.]65[.]144[.]73/312b423bf6dd463f8d15.php | botnet_cc | 2026-06-29 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Stealc
let malicious_ips = dynamic(["176.65.144.73"]);
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(["176.65.144.73"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Stealc
let malicious_urls = dynamic(["http://176.65.144.73/312b423bf6dd463f8d15.php"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios for the ThreatFox: Stealc IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Endpoint Security Scanning of Quarantine Folders
svc-crowdstrike, Microsoft Defender Antivirus) and restrict the detection scope to exclude paths containing \Quarantine\, \Temp\, or \Samples\.Software Deployment via Configuration Management Tools
NT AUTHORITY\SYSTEM running ccmexec.exe, Ansible-Runner) and filter out network traffic originating from the internal software distribution point IP ranges during standard maintenance windows (e.g., 02:00 – 04:00 UTC).IT Administration and Manual Artifact Analysis