This hunt detects adversary behavior involving Evilginx phishing campaigns that utilize advanced session hijacking to bypass multi-factor authentication and steal user credentials. A SOC team should proactively hunt for these specific IOCs in Azure Sentinel to identify compromised accounts early, as Evilginx’s ability to mimic legitimate login flows often evades standard real-time detections.
Malware Family: Evilginx Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 87[.]199[.]203[.]248:3333 | botnet_cc | 2026-08-01 | 75% |
| ip:port | 77[.]246[.]111[.]132:3333 | botnet_cc | 2026-08-01 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Evilginx
let malicious_ips = dynamic(["87.199.203.248", "77.246.111.132"]);
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(["87.199.203.248", "77.246.111.132"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding mitigation strategies for the ThreatFox: Evilginx IOCs detection rule in an enterprise environment:
Corporate Phishing Simulation Campaigns
*.knowbe4.net, *.proofpoint.com) during scheduled campaign windows (typically 09:00–17:00 on weekdays).Automated SaaS Provisioning and Identity Sync Jobs
AzureADConnect.exe, okta-agent) and exclude traffic where the source user context is identified as a “Service Account” or “System” rather than an interactive human user.Third-Party Security Scanning Appliances