This detection identifies adversary activity involving communication with specific malicious URLs flagged by URLhaus under the identifier 94-154-32-38, which often indicate active phishing campaigns or command-and-control traffic. A proactive hunt in Azure Sentinel is essential to immediately isolate affected endpoints and prevent potential data exfiltration or lateral movement before the threat escalates across the network.
Threat: 94-154-32-38 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://94.154.32.38/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-08-22 |
hxxps://94.154.32.38/bin/support.client.exe | offline | malware_download | 2026-08-22 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 94-154-32-38
let malicious_domains = dynamic(["94.154.32.38"]);
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(["94.154.32.38"]);
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: 94-154-32-38 Malicious URLs detection rule:
Scenario: Automated Cloud Backup Verification
94.154.32.38) to verify the status of critical security feeds before archiving logs, triggering a network connection that looks like an outbound malicious scan.10.50.20.15) where the destination is 94.154.32.38 and the User-Agent string contains “Veeam.BR”.Scenario: Scheduled Endpoint Security Policy Sync
94.154.32.38 to download the latest reputation database, which the rule interprets as a potential malicious URL interaction.192.168.50.0/24) targeting port 443 on 94.154.32.38.Scenario: Third-Party SIEM Data Ingestion