This detection identifies adversary activity involving traffic to a specific set of twelve malicious URLs associated with the IP address 176.65.139.139, which are known indicators of compromise for potential command and control or phishing operations. The SOC team should proactively hunt for these URLs in Azure Sentinel to rapidly isolate affected endpoints and prevent lateral movement before the adversary can establish a persistent foothold within the network.
Threat: 176-65-139-139 Total URLs: 12 Active URLs: 12
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://176.65.139.139/i686 | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/ppc | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/mpsl | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/mips | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/persist.arm7 | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/arm7 | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/sh4 | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/x86 | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/spc | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/m68k | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/x86_64 | online | malware_download | 2026-08-22 |
hxxp://176.65.139.139/arm6 | online | malware_download | 2026-08-22 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 176-65-139-139
let malicious_domains = dynamic(["176.65.139.139"]);
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.139"]);
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 4 specific false positive scenarios and corresponding filters for the URLhaus: 176-65-139-139 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Patch Management Scans
176-65-139-139 range, legitimate scan traffic will trigger the rule.Host_Name contains "PATCH-SERVER-01") or filter by Process Name (msconfig.exe, IvantiAgent.exe) to exclude traffic originating from known patch management servers.Scenario: Scheduled Cloud Backup and Sync Jobs
176-65-139-139 IP block, generating high-volume HTTP/HTTPS traffic that mimics malicious URL patterns.Time is between 02:00 and 06:00) combined with an exclusion on the User Account (User_Name contains "svc_backup") to ignore traffic from dedicated service accounts.Scenario: Third-Party Security Intelligence Feeds