This hunt detects adversary behavior involving network traffic to a specific set of 13 malicious URLs associated with IP 176.65.139.212, which are known indicators of compromise for potential phishing or command-and-control activities. The SOC team should proactively hunt for this in Azure Sentinel to identify early-stage lateral movement or data exfiltration attempts that may have bypassed standard perimeter defenses due to the high severity and targeted nature of these malicious endpoints.
Threat: 176-65-139-212 Total URLs: 13 Active URLs: 6
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://176.65.139.212/eclipse.sh4 | online | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.i586 | offline | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.m68k | online | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.armv6l | offline | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.mipsel | offline | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.armv5l | offline | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.armv7l | online | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.mips | online | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.i686 | offline | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.armv4l | offline | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.powerpc | online | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.x86_64 | online | malware_download | 2026-08-18 |
hxxp://176.65.139.212/eclipse.sh | offline | malware_download | 2026-08-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 176-65-139-212
let malicious_domains = dynamic(["176.65.139.212"]);
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.212"]);
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/exclusions for the URLhaus: 176-65-139-212 Malicious URLs detection rule:
Scenario: Enterprise Endpoint Protection Agents (e.g., CrowdStrike Falcon, Microsoft Defender for Endpoint) performing scheduled definition updates.
176.65.139.212 during off-hours maintenance windows, which the rule flags as a malicious URL connection.svc-crowdstrike, DefenderSvc) or exclude specific destination ports used by these agents (typically 443) when the source IP is within the internal management subnet.Scenario: Automated Patch Management Systems (e.g., SCCM, Ivanti, PDQ Deploy) executing software deployment tasks.
176.65-139.212 to download installation packages or verify checksums for third-party applications (such as Adobe Creative Cloud or Java updates) hosted on that IP.Scenario: Cloud Backup Solutions (e.g., Veeam, Rubrik, Acronis Cyber Protect) initiating repository synchronization jobs.
176.65-139.212