This hunt detects adversary behavior involving traffic to a specific set of 14 malicious URLs associated with the IP address 176-65-139-237, which are known indicators of compromise for web-based threats. A SOC team should proactively hunt for these URLs in Azure Sentinel to identify potential early-stage infections or data exfiltration attempts that may have bypassed standard perimeter defenses due to the high severity and targeted nature of this threat intelligence feed.
Threat: 176-65-139-237 Total URLs: 14 Active URLs: 14
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://176.65.139.237/static/js/sdfjgnjsdf.mips | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.m68k | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.arc | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.arm5 | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.ppc | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.arm6 | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.arm | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.x86 | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.mpsl | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.i486 | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.arm7 | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.i686 | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.sh4 | online | malware_download | 2026-08-11 |
hxxp://176.65.139.237/static/js/sdfjgnjsdf.x86_64 | online | malware_download | 2026-08-11 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 176-65-139-237
let malicious_domains = dynamic(["176.65.139.237"]);
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.237"]);
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 3-5 specific false positive scenarios for the URLhaus: 176-65-139-237 Malicious URLs detection rule, including tailored filters and exclusions:
Scheduled Security Scanner Traffic
176.65.139.237 is part of a known trusted feed list used by the scanner, it will generate traffic that mimics malicious URL access.VULN-SCANNER-SG security group and the destination port is restricted to standard HTTP/HTTPS (80/443). Alternatively, add 176.65.139.237 to the global “Trusted External IPs” allowlist if confirmed as a benign feed provider.Cloud Backup and Synchronization Jobs
176.65.139.237 represents a specific CDN node or API gateway used by these backup services, routine sync jobs will trigger the rule.BACKUP-AGENT label during the defined maintenance window (e.g., 02:00 – 04:00 UTC). Additionally, exclude URLs containing specific backup service paths (e.g., /api/v1/sync)