This hunt targets adversary behavior where attackers leverage Evilginx-managed infrastructure to execute sophisticated phishing campaigns that bypass traditional MFA protections through advanced session hijacking. Proactively hunting for these specific IOCs within Azure Sentinel is critical because it enables the SOC team to identify and isolate compromised user sessions before lateral movement occurs, addressing a high-severity threat vector that standard signature-based detections often miss.
Malware Family: Evilginx Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 45[.]59[.]114[.]202:9090 | botnet_cc | 2026-07-13 | 75% |
| ip:port | 185[.]212[.]131[.]27:9000 | botnet_cc | 2026-07-13 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Evilginx
let malicious_ips = dynamic(["45.59.114.202", "185.212.131.27"]);
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.59.114.202", "185.212.131.27"]);
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 5 specific false positive scenarios for the ThreatFox: Evilginx IOCs detection rule in an enterprise environment, along with recommended filters or exclusions:
Corporate Phishing Simulation Campaigns
10.x.x.x/24 for KnowBe4) and whitelist the specific subdomains used by these tools (e.g., *.phishing-sim.internal.corp).Scheduled Endpoint Backup and Sync Jobs
VeeamAgent.exe, OneDrive.exe) and the destination URL matches the organization’s approved cloud storage provider list, specifically filtering out connections to known CDN IP ranges associated with these providers.IT Admin Provisioning via Cloud Portals