This hunt detects adversary behavior where attackers leverage Evilginx’s advanced phishing infrastructure to bypass multi-factor authentication and compromise user credentials through sophisticated session hijacking techniques. The SOC team should proactively hunt for these specific IOCs in Azure Sentinel because Evilginx attacks often evade traditional detection mechanisms, requiring immediate identification of compromised sessions to prevent lateral movement and data exfiltration before the adversary establishes persistence.
Malware Family: Evilginx Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 34[.]81[.]234[.]183:8443 | botnet_cc | 2026-08-08 | 75% |
| ip:port | 195[.]242[.]119[.]86:9000 | botnet_cc | 2026-08-08 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Evilginx
let malicious_ips = dynamic(["195.242.119.86", "34.81.234.183"]);
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(["195.242.119.86", "34.81.234.183"]);
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 |
Scheduled Phishing Simulation Campaigns
Third-Party MFA Provider Integration
*.okta.com, login.microsoftonline.com) when the source is an internal workstation performing standard authentication flows.Automated Cloud Backup and Sync Jobs