This hunt targets adversary behavior involving Evilginx-managed infrastructure by identifying traffic to specific Indicators of Compromise known to support advanced phishing and credential harvesting campaigns. Proactively hunting for these IOCs within Azure Sentinel is critical because Evilginx’s ability to bypass traditional MFA protections makes early detection essential for preventing widespread account compromise before lateral movement occurs.
Malware Family: Evilginx Total IOCs: 2 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 74[.]0[.]32[.]137:443 | botnet_cc | 2026-07-10 | 75% |
| ip:port | 100[.]31[.]133[.]28:3333 | botnet_cc | 2026-07-10 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Evilginx
let malicious_ips = dynamic(["74.0.32.137", "100.31.133.28"]);
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(["74.0.32.137", "100.31.133.28"]);
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 in an enterprise environment, along with recommended filters or exclusions:
Legitimate Phishing Campaigns by Internal Security Teams
src_ip in 10.x.x.x/24) or specifically whitelist the IP ranges and domains associated with your organization’s approved phishing simulation vendors.Scheduled Cloud Identity Provisioning Jobs
svc-identity-sync, okta-agent) running on dedicated jump servers or cloud VMs. Additionally, filter for the specific user agent strings associated with these provisioning tools (e.g., containing “Microsoft-Azure-AD-Sync” or “Okta-Agent”).Third-Party SaaS Integration Health Checks