This hunt targets adversary behavior where attackers leverage Evilginx’s advanced phishing infrastructure to deploy sophisticated man-in-the-middle attacks that bypass traditional MFA defenses by mimicking legitimate login portals. The SOC team should proactively hunt for these specific IOCs within Azure Sentinel to identify early-stage credential compromise attempts before they escalate into full-scale account takeovers or lateral movement.
Malware Family: Evilginx Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 185[.]117[.]90[.]47:3000 | botnet_cc | 2026-06-30 | 75% |
| ip:port | 147[.]182[.]176[.]38:8080 | botnet_cc | 2026-06-30 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Evilginx
let malicious_ips = dynamic(["147.182.176.38", "185.117.90.47"]);
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(["147.182.176.38", "185.117.90.47"]);
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 for the ThreatFox: Evilginx IOCs detection rule within an enterprise environment, along with suggested filters or exclusions:
Legitimate Cloud Service Provider Connectivity
Mozilla/5.0 ... Office/365 or specific Salesforce API tokens).Security Operations Center (SOC) Threat Intelligence Updates
10.20.50.0/24) and restrict the alert scope to exclude traffic originating from specific service accounts used by threat intelligence tools (e.g., svc-threat-intel or admin-splunk).**Scheduled Vulnerability Scanning and Patch