This hypothesis targets adversaries leveraging the specific IP address 176.65.134.121 on port 8080 to host malicious content, a pattern frequently associated with phishing campaigns or command-and-control infrastructure. Proactively hunting for these URLs in Azure Sentinel allows the SOC to identify compromised endpoints or suspicious web traffic before the malicious payload is fully executed or data is exfiltrated.
Threat: 176-65-134-121-8080 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://176.65.134.121:8080/bot.mips | online | malware_download | 2026-09-18 |
hxxp://176.65.134.121:8080/bot.x86_64 | online | malware_download | 2026-09-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 176-65-134-121-8080
let malicious_domains = dynamic(["176.65.134.121"]);
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.134.121"]);
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 |
Scenario: A legacy internal web application or API gateway hosted on the IP 176.65.134.121 uses port 8080 for its management console or health check endpoints, which is accessed by automated monitoring agents (e.g., Datadog, New Relic, or custom Python scripts running via cron/Task Scheduler).
agent.exe, python.exe, node.exe) when the destination URL matches http://176.65.134.121:8080/* and the source user account belongs to the MonitoringService or AppAdmin group.Scenario: A developer or DevOps engineer is manually testing a staging environment or a specific microservice deployed on that IP using a browser or HTTP client (e.g., curl, Postman, or PowerShell Invoke-WebRequest) during a scheduled deployment verification job.
curl.exe, powershell.exe, postman.exe) and the user account is part of the DevOps or QA security group, provided the connection occurs during business hours or within a defined maintenance window.Scenario: A containerized application (e.g., running in Kubernetes or Docker) has a hardcoded configuration pointing to 176.65.134.121:8080 for an external dependency or a shared service registry, causing frequent legitimate outbound connections from container runtime processes.
containerd-shim, dockerd, or specific container image names) where the