This hunt detects adversary activity involving the consumption of known malicious web resources identified by URLhaus under the tag 176-123-9-22, which often indicate initial access or command and control operations. The SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly identify compromised endpoints interacting with high-severity threats before they escalate into broader incidents.
Threat: 176-123-9-22 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://176.123.9.22/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-29 |
hxxps://176.123.9.22/bin/support.client.exe | online | malware_download | 2026-08-29 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 176-123-9-22
let malicious_domains = dynamic(["176.123.9.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(["176.123.9.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 and corresponding filters for the URLhaus: 176-123-9-22 Malicious URLs detection rule:
Automated Security Scanner Traffic: Internal vulnerability scanners (e.g., Tenable Nessus, Qualys, or Microsoft Defender Vulnerability Manager) frequently probe external endpoints to verify certificate validity and reachability. These tools often generate GET requests against known malicious URL patterns during scheduled discovery cycles.
Source_IP IN [10.20.50.0/24]) where the User-Agent string contains “Tenable” or “Qualys”.Cloud Backup and Sync Agents: Enterprise file synchronization tools like Microsoft OneDrive for Business, Google Drive, or Dropbox often perform background health checks by contacting external status endpoints that may be flagged as suspicious due to high-volume traffic patterns.
OneDrive.exe, GoogleUpdate.exe, and Dropbox.exe when the destination URL matches the specific hash pattern of the 176-123-9-22 tag, provided the request method is GET and no file download payload exceeds 50KB.Software Update Mechanisms: Legitimate enterprise applications (e.g., Adobe Creative Cloud, Zoom, or Office 365) utilize update servers that may be hosted on domains recently added to URLhaus lists due to shared infrastructure with compromised sites.
*.update.microsoft.com, *.adobe.com) and filter out alerts where the HTTP status code is 200 OK and the connection duration is under 5 seconds