This hunt detects adversaries who distribute malware by directing users to download files from newly identified malicious URLs flagged by URLhaus. Proactively hunting for these specific indicators in Azure Sentinel is critical to intercept early-stage infection vectors before they propagate across the enterprise network and compromise sensitive assets.
Threat: malware_download Total URLs: 6 Active URLs: 3
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://175.150.177.126:57685/i | online | malware_download | 2026-08-21 |
hxxp://58.208.16.203:3588/bin.sh | online | malware_download | 2026-08-21 |
hxxp://58.208.16.203:3588/i | offline | malware_download | 2026-08-21 |
hxxp://42.59.235.202:51478/i | online | malware_download | 2026-08-21 |
hxxp://178.16.54.109/spamget.exe | offline | malware_download | 2026-08-21 |
hxxp://163.142.94.220:54475/i | offline | malware_download | 2026-08-21 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: malware_download
let malicious_domains = dynamic(["175.150.177.126", "42.59.235.202", "58.208.16.203"]);
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(["175.150.177.126", "42.59.235.202", "58.208.16.203"]);
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: Automated Software Deployment via Configuration Management Tools
*.microsoft.com, *.adobe.com). Additionally, filter out events where the user context is a service account (e.g., DOMAIN\SCCM-Service) rather than an interactive user.Scenario: Scheduled Antivirus Definition Updates
*.crowdstrike.com, *.symantec.com) during specific maintenance windows (e.g., 02:00–04:00 local time). Alternatively, filter by process name to exclude the specific updater executable (e.g., FalconSensor.exe or SymantecEngineUpdate.exe).Scenario: Cloud Backup and Synchronization Agents