This hunt targets adversary behavior where internal assets initiate connections to specific malicious IP addresses (167.99.234.133) known for hosting compromised URLs, indicating potential command-and-control communication or drive-by download attacks. Proactively hunting for these indicators in Azure Sentinel is critical because early detection of traffic to this high-severity threat cluster allows the SOC team to isolate affected endpoints before lateral movement or data exfiltration occurs.
Threat: 167-99-234-133 Total URLs: 3 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://167.99.234.133/svc.exe | online | malware_download | 2026-07-21 |
hxxp://167.99.234.133/main.exe | online | malware_download | 2026-07-21 |
hxxp://167.99.234.133/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-07-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 167-99-234-133
let malicious_domains = dynamic(["167.99.234.133"]);
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(["167.99.234.133"]);
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 exclusions for the URLhaus: 167-99-234-133 Malicious URLs detection rule in an enterprise environment:
Automated Software Update Scans by Endpoint Protection Agents
167-99-234-133 to verify signature definitions or check for new malware hashes before pushing updates to workstations.C:\Program Files\CrowdStrike\fsagent.exe (or equivalent Defender service) running under a system account like NT AUTHORITY\SYSTEM or Local Service.Scheduled Compliance and Vulnerability Scanning Jobs
167-99-234-133 address.10.50.20.0/24 (the designated Security Scanning VLAN) when the destination URL contains the hash associated with this IP.IT Administration and Patch Management Workflows