This hunt detects adversary activity involving Evilginx’s advanced phishing infrastructure by identifying specific indicators of compromise that facilitate credential theft and session hijacking. A SOC team should proactively search for these IOCs in Azure Sentinel to rapidly identify and contain sophisticated attacks that bypass traditional multi-factor authentication defenses before sensitive data is exfiltrated.
Malware Family: Evilginx Total IOCs: 3 IOC Types: ip:port, url
| Type | Value | Threat Type | First Seen | Confidence |
|---|---|---|---|---|
| url | hxxp://bx.varrysections.digital/ | botnet_cc | 2026-08-19 | 50% |
| ip:port | 94[.]20[.]141[.]82:8443 | botnet_cc | 2026-08-19 | 75% |
| ip:port | 185[.]212[.]129[.]129:9000 | botnet_cc | 2026-08-19 | 75% |
// Hunt for network connections to known malicious IPs
// Source: ThreatFox - Evilginx
let malicious_ips = dynamic(["185.212.129.129", "94.20.141.82"]);
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(["185.212.129.129", "94.20.141.82"]);
DeviceNetworkEvents
| where RemoteIP in (malicious_ips)
| project Timestamp, DeviceName, RemoteIP, RemotePort, InitiatingProcessFileName, ActionType
| order by Timestamp desc
// Hunt for access to known malicious URLs
// Source: ThreatFox - Evilginx
let malicious_urls = dynamic(["http://bx.varrysections.digital/"]);
UrlClickEvents
| where Url has_any (malicious_urls)
| project Timestamp, AccountUpn, Url, ActionType, IsClickedThrough
| order by Timestamp desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DeviceNetworkEvents | Ensure this data connector is enabled |
UrlClickEvents | Ensure this data connector is enabled |
Here are 5 specific false positive scenarios for the ThreatFox: Evilginx IOCs detection rule, along with suggested filters and exclusions tailored for an enterprise environment:
Scenario: Scheduled Security Tool Updates via Cloud Repositories
MsMpEng.exe, FalconSensorService) and restrict the alert to only trigger if the destination IP is not within the known Microsoft Azure CDN or CrowdStrike Update Server CIDR blocks. Alternatively, add these specific update server domains (e.g., *.microsoft.com, *.falcon.crowdstrike.com) to a global allow-list for this rule.Scenario: Admin-Driven Cloud Backup and Synchronization Tasks
DOMAIN\BackupServiceAccount, DOMAIN\OneDriveAdmin) and the Process Path. Configure the rule to