This detection rule identifies adversary activity involving Evilginx phishing campaigns by monitoring for four specific Indicators of Compromise (IOCs) that signal active credential harvesting and session hijacking attempts. A proactive hunt is essential within Azure Sentinel to rapidly isolate compromised identities before attackers leverage stolen credentials to establish persistence or escalate privileges across the tenant.
Malware Family: Evilginx Total IOCs: 4 IOC Types: ip:port
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| ip:port | 185[.]212[.]129[.]143:9000 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 169[.]58[.]201[.]247:5000 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 162[.]35[.]170[.]53:2030 | botnet_cc | 2026-08-21 | 75% |
| ip:port | 162[.]35[.]105[.]100:8443 | botnet_cc | 2026-08-21 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Evilginx
let malicious_ips = dynamic(["162.35.105.100", "162.35.170.53", "185.212.129.143", "169.58.201.247"]);
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(["162.35.105.100", "162.35.170.53", "185.212.129.143", "169.58.201.247"]);
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 rule, tailored for a legitimate enterprise environment:
Scenario: Automated Phishing Simulation Campaigns
*.knowbe4.com, *.proofpoint.com) within the detection logic, or tag these traffic flows with a “Phishing-Sim” attribute to bypass the alert.Scenario: Scheduled Cloud Backup Agents
Scenario: Third-Party SSO and Identity Federation