This hunt detects adversary behavior where endpoints communicate with specific malicious URLs identified by URLhaus (tagged 64-89-163-22), indicating potential command-and-control activity or initial infection vectors. Proactively hunting for these indicators in Azure Sentinel is critical to rapidly identify compromised assets and block lateral movement before the threat escalates within the organization’s network perimeter.
Threat: 64-89-163-22 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://64.89.163.22/d.sh | online | malware_download | 2026-06-29 |
hxxp://64.89.163.22/check.sh | online | malware_download | 2026-06-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 64-89-163-22
let malicious_domains = dynamic(["64.89.163.22"]);
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(["64.89.163.22"]);
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 for the URLhaus: 64-89-163-22 Malicious URLs detection rule, including suggested filters and exclusions tailored for an enterprise environment:
Scenario: Automated Software License Validation
64-89-163-22 is a newly registered subdomain used for API handshakes, legitimate traffic from hundreds of workstations may trigger the rule simultaneously during business hours.10.20.50.0/24) or filter by the specific Process Name (ccmexec.exe for SCCM) initiating the connection, provided the destination port is standard HTTP/HTTPS (80/443).Scenario: Third-Party Cloud Backup Agent Heartbeats
64-89-163-22 is part of the vendor’s global load-balanced infrastructure, these routine “heartbeat” packets may be flagged as malicious by URLhaus due to a recent IP reputation update that hasn’t yet been whitelisted in the enterprise proxy.