This hunt targets adversary behavior where endpoints communicate with known malicious infrastructure identified by URLhaus, specifically the IP range 77-91-123-220, to detect potential command-and-control activity or phishing campaigns. Proactively hunting for these specific URLs in Azure Sentinel is critical because early identification of this high-severity threat allows the SOC team to isolate compromised assets and block malicious traffic before lateral movement occurs across the network.
Threat: 77-91-123-220 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://77.91.123.220/bin/support.client.exe | online | malware_download | 2026-07-14 |
hxxps://77.91.123.220/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-07-14 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 77-91-123-220
let malicious_domains = dynamic(["77.91.123.220"]);
DnsEvents
| where Name has_any (malicious_domains)
| project TimeGenerated, Computer, Name, IPAddresses
| order by TimeGenerated desc
// Hunt for web traffic to URLhaus malicious domains
let malicious_domains = dynamic(["77.91.123.220"]);
CommonSecurityLog
| where RequestURL has_any (malicious_domains) or DestinationHostName has_any (malicious_domains)
| project TimeGenerated, SourceIP, RequestURL, DestinationHostName, DeviceAction
| order by TimeGenerated desc
| Sentinel Table | Notes |
|---|---|
CommonSecurityLog | Ensure this data connector is enabled |
DnsEvents | Ensure this data connector is enabled |
Here are specific false positive scenarios and corresponding exclusion strategies for the URLhaus: 77-91-123-220 Malicious URLs detection rule in an enterprise environment:
Automated Software Update Scans by Endpoint Protection Agents
Windows Update service or third-party agents like CrowdStrike Falcon and SentinelOne frequently query the IP range 77.91.123.0/24 to check for signature updates, threat intelligence feeds, or patch availability. These background connections are often initiated by system accounts (e.g., NT AUTHORITY\SYSTEM) rather than interactive users, leading to high-volume traffic that triggers the rule despite being benign administrative maintenance.ProcessName contains “CrowdStrike”, “SentinelOne”, “svchost.exe” with command line containing “wuserv”) and the destination port is standard HTTPS (443) or HTTP (80).Scheduled Cloud Backup and Synchronization Jobs
77.91.123-220 range. These jobs typically run during off-hours (e.g., 02:00–04:00) and generate large data transfers that mimic malicious scanning behavior, especially if the backup server acts as a proxy for multiple workstations.EventTime between 01:00 and 05