This detection identifies adversary activity where threat actors utilize wget tools to download and execute payloads from known malicious URLs, often indicating early-stage command-and-control or data exfiltration attempts. A SOC team should proactively hunt for this behavior in Azure Sentinel to rapidly isolate compromised endpoints before the downloaded artifacts can establish persistence or spread laterally across the network.
Threat: ua-wget Total URLs: 14 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://5.182.210.174/a9eeb4 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/63d2dd | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/1e596c | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/59e4b9 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/229db9 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/6711b4 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/f61d73 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/833d99 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/908e60 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/e6a806 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/e27047 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/646d52 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/9a3160 | offline | malware_download | 2026-08-20 |
hxxp://5.182.210.174/b97872 | offline | malware_download | 2026-08-20 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ua-wget
let malicious_domains = dynamic(["5.182.210.174"]);
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(["5.182.210.174"]);
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 exclusions for the URLhaus: ua-wget Malicious URLs detection rule:
Automated Backup Scripts via Cron Jobs
cron on Linux servers that utilize wget to pull configuration files, database dumps, or software manifests from internal artifact repositories (e.g., Nexus, Artifactory) or cloud storage buckets. These legitimate requests mimic the traffic pattern of the malicious rule.wget and the destination URL belongs to internal domains (e.g., .corp, .local) or trusted public artifact repositories (e.g., github.com, nexus.internal).CI/CD Pipeline Artifact Retrieval
wget command within build agents to download dependencies, Docker images, or release notes during the “Build” or “Deploy” stages. These automated jobs generate high-volume wget traffic that can be flagged as suspicious if the URLs are dynamic or hosted on external CDNs.*.maven.org, *.docker.io).Patch Management and Software Distribution
wget to fetch update manifests, installer binaries, or policy definitions from the central distribution point. This is common during scheduled maintenance windows where agents pull data simultaneously.