This hunt detects adversary activity involving interactions with two specific malicious URLs identified by URLhaus, which are likely indicators of phishing campaigns or command-and-control communications. A SOC team should proactively investigate these signals in Azure Sentinel to rapidly identify compromised endpoints and prevent potential data exfiltration or lateral movement before the threat escalates.
Threat: 217-60-241-32 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://217.60.241.32/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-31 |
hxxp://217.60.241.32/bin/support.client.exe | online | malware_download | 2026-08-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 217-60-241-32
let malicious_domains = dynamic(["217.60.241.32"]);
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.32"]);
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 filters for the URLhaus: 217-60-241-32 Malicious URLs detection rule in an enterprise environment:
Automated Software Update Scans by Endpoint Protection Agents
217.60.241.32 (URLhaus API/Feed server) during scheduled morning update cycles, mimicking a user browsing a malicious site.C:\Program Files\CrowdStrike\csagent.exe, MsMpEng.exe) where the destination port is 443 and the User-Agent string contains “CrowdStrike” or “Microsoft Defender”.Scheduled Threat Intelligence Feed Synchronization by SIEM/EDR
217.60.241.32 to ingest threat signatures, which the detection rule interprets as a potential user interaction with a malicious URL.10.50.20.10/32) and restrict the alert logic to only trigger if the connection duration is less than 60 seconds, assuming feed syncs are long-running or distinct from user browsing sessions.