This detection rule identifies potential data exfiltration activities by matching network and endpoint telemetry against three critical Indicators of Compromise (IOCs) linked to the Unknown Stealer malware family. Proactive hunting for these specific IOCs within Azure Sentinel is essential to rapidly identify early-stage infections before adversaries can establish persistence or escalate their impact on sensitive organizational assets.
Malware Family: Unknown Stealer Total IOCs: 3 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxps://mylovemarry.com | botnet_cc | 2026-08-13 | 100% |
| ip:port | 45[.]39[.]33[.]177:80 | botnet_cc | 2026-08-13 | 100% |
| url | hxxp://45[.]39[.]33[.]177/peter.php | botnet_cc | 2026-08-13 | 100% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Unknown Stealer
let malicious_ips = dynamic(["45.39.33.177"]);
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(["45.39.33.177"]);
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(["https://mylovemarry.com", "http://45.39.33.177/peter.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 4 specific false positive scenarios for the ThreatFox: Unknown Stealer IOCs rule, including targeted filters and exclusions suitable for an enterprise environment:
Legitimate Endpoint Protection Scans
Process Name matches known security agents (e.g., C:\Program Files\CrowdStrike\fsq.exe, MsMpEng.exe) and the User Account is a system service account (e.g., NT AUTHORITY\SYSTEM).Automated Software Deployment via Configuration Management
Parent Process is a known configuration management agent (e.g., ccmsetup.exe, ansible-runner) and the Destination Port corresponds to internal repository ports (e.g., 80, 443) within the corporate IP range.Third-Party Cloud Backup Agents