This hunt detects adversary behavior involving Unknown Stealer malware by identifying specific Indicators of Compromise (IOCs) that signal active data exfiltration and credential theft within the environment. A SOC team should proactively hunt for these IOCs in Azure Sentinel to rapidly identify early-stage infections before they escalate into broader compromises, leveraging high-severity alerts to prioritize immediate incident response actions.
Malware Family: Unknown Stealer Total IOCs: 2 IOC Types: url, ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://93[.]152[.]223[.]30:5000/api/stealer/report | botnet_cc | 2026-07-22 | 100% |
| ip:port | 93[.]152[.]223[.]30:5000 | botnet_cc | 2026-07-22 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown Stealer
let malicious_ips = dynamic(["93.152.223.30"]);
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(["93.152.223.30"]);
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 - Unknown Stealer
let malicious_urls = dynamic(["http://93.152.223.30:5000/api/stealer/report"]);
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 4 specific false positive scenarios for the ThreatFox: Unknown Stealer IOCs rule, along with recommended filters and exclusions tailored for an enterprise environment:
Scenario: Automated Security Scans by EDR Agents
FalconSensor.exe, MsMpEng.exe, or SentinelOneAgent.exe AND the parent process is a known system service (e.g., System or svchost.exe). Additionally, whitelist specific destination IP ranges belonging to these vendors’ update clusters.Scenario: Scheduled Backup and Synchronization Jobs
\Program Files\Microsoft OneDrive\,