This detection identifies adversary activity where threat actors utilize wget via user-agent strings to exfiltrate data or download payloads from a curated list of known malicious URLs. Proactive hunting for this behavior in Azure Sentinel is critical to rapidly identify and isolate compromised endpoints leveraging wget before they establish persistence or propagate lateral movement across the network.
Threat: ua-wget Total URLs: 12 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://5.182.210.61/a58066 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/35ca8a | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/7f36d6 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/46d337 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/a33a57 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/f13ecd | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/5f6d8c | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/2e59c4 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/6e47c0 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/0a1285 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/3e6376 | offline | malware_download | 2026-07-27 |
hxxp://5.182.210.61/72f275 | offline | malware_download | 2026-07-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: ua-wget
let malicious_domains = dynamic(["5.182.210.61"]);
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.61"]);
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 for the URLhaus: ua-wget Malicious URLs rule, including tailored filters and exclusions for an enterprise environment:
Automated Backup Scripts via Command Line
wget in shell scripts to fetch daily configuration manifests, software update catalogs, or log archives from internal repositories. These requests often originate from server workstations and match the rule’s signature for ua-wget.10.20.40.x for the Backup Server subnet) or filter out URLs containing known internal domains (e.g., *.backup.internal.corp) where the User-Agent contains Wget.CI/CD Pipeline Artifact Retrieval
wget to download dependencies, Docker images, or release notes from public registries (e.g., Maven Central, PyPI) before deployment. These automated jobs frequently trigger the detection logic during nightly builds.jenkins-runner-01, gitlab-ci-worker) or filter URLs that point to trusted artifact repositories (e.g., *.maven.org, *.docker.io) when the request source is identified as a build agent.Scheduled Compliance and Patching Tasks
wget. These recurring jobs often hit external URLs