This hunt detects adversary behavior involving the consumption of newly identified malicious web resources associated with the IP address 176.65.139.232, which are flagged by URLhaus as active threats. A SOC team should proactively investigate these URLs in Azure Sentinel to rapidly identify potential initial access or command-and-control activities before they escalate into broader compromise incidents within the organization’s network.
Threat: 176-65-139-232 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://176.65.139.232/bot.ppc | online | malware_download | 2026-08-10 |
hxxp://176.65.139.232/bot.aarch64 | online | malware_download | 2026-08-10 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 176-65-139-232
let malicious_domains = dynamic(["176.65.139.232"]);
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.65.139.232"]);
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-65-139-232 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Cloud Backup Syncing to Vendor Storage
176.65.139.232. The detection logic flags these outbound HTTPS connections as malicious because the IP is tagged in URLhaus, but the traffic represents legitimate backup operations.VeeamBackupService.exe or rubrik-agent) and Destination Port 443. Additionally, add the specific IP range of the backup vendor’s data center to the allow-list if the URL path matches known backup endpoints (e.g., /api/v1/sync).Scenario: Third-Party SaaS Integration Webhooks
176.65.139.232. These periodic JSON payload transmissions trigger the rule, mistaking the legitimate API callback for a potential phishing or malware download event.Salesforce-Webhook, Workday-API) and the HTTP method is strictly POST. Ensure the exclusion applies only to the specific sub-domain or URL path associated with