This detection identifies adversary activity involving the consumption of specific malicious URLs associated with IP address 217.60.241.91, signaling potential web-based threats such as phishing or drive-by downloads. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before broader network impact occurs.
Threat: 217-60-241-91 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://217.60.241.91/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-08-10 |
hxxps://217.60.241.91/bin/support.client.exe | offline | malware_download | 2026-08-10 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 217-60-241-91
let malicious_domains = dynamic(["217.60.241.91"]);
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(["217.60.241.91"]);
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 5 specific false positive scenarios for the URLhaus: 217-60-241-91 Malicious URLs detection rule, along with targeted filtering strategies:
Scheduled Cloud Backup Agent Polling
217.60.241.91, triggering the rule during maintenance windows (e.g., 02:00–04:00 UTC).Veeam.Backup.Service.exe or rubrik-agent) combined with a Time Window constraint. Alternatively, whitelist the specific URL path (e.g., *.cloud-vendor.com/api/status) if the IP is shared across multiple legitimate endpoints.Third-Party SIEM Log Forwarding
SplunkUniversalForwarder or DatadogAgent) and the HTTP Method is strictly POST.Automated Patch Management Scans