This detection identifies adversary activity involving known malicious URLs from the URLhaus threat intelligence feed, specifically targeting the IP address 45-141-119-82 which is associated with active web-based threats. The SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly isolate compromised endpoints and prevent potential data exfiltration or lateral movement before broader network impact occurs.
Threat: 45-141-119-82 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://45.141.119.82/setup.exe | offline | malware_download | 2026-08-09 |
hxxp://45.141.119.82/update.ps1 | offline | malware_download | 2026-08-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 45-141-119-82
let malicious_domains = dynamic(["45.141.119.82"]);
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(["45.141.119.82"]);
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 3-5 specific false positive scenarios and corresponding exclusion strategies for the URLhaus: 45-141-119-82 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Patch Management Scans
ccmsetup.exe or ivantiagent.exe) and exclude traffic originating from the dedicated patch management server subnets (e.g., 10.20.50.0/24).Scenario: Cloud Backup Agent Heartbeats
45-141-119-82 (or a related range) is part of the vendor’s infrastructure, legitimate backup agents will trigger this rule during their daily scheduled jobs.VeeamBackupService) and exclude URLs containing the vendor-specific domain suffix (e.g., *.veeam.com or *.rubrik.com) regardless of the IP match.Scenario: SIEM Log Forwarding to External Threat Intelligence