This detection identifies adversary activity involving the execution or access of specific malicious URLs flagged by URLhaus, which often serve as initial entry points for phishing campaigns or malware distribution. A SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the threat escalates into a broader incident.
Threat: 104-249-10-175 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://104.249.10.175/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-17 |
hxxp://104.249.10.175/bin/support.client.exe | online | malware_download | 2026-08-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 104-249-10-175
let malicious_domains = dynamic(["104.249.10.175"]);
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(["104.249.10.175"]);
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: 104-249-10-175 Malicious URLs detection rule in a legitimate enterprise environment:
Scenario: Automated Security Scanner Traffic
nessus.exe, qualyspc.exe). Alternatively, filter out traffic where the User-Agent string contains “Tenable,” “Qualys,” or “Rapid7.”Scenario: Scheduled Patch Management Updates
*.update.microsoft.com or *.ivanti.com) if they align with the 104-249-10-175 tag.**Scenario: Cloud Backup