This hunt detects adversary activity involving connections to malicious URLs identified by URLhaus at IP address 194.26.192.131, which are frequently associated with phishing campaigns and malware distribution. The SOC team should proactively hunt for these indicators in Azure Sentinel to rapidly identify compromised endpoints and prevent potential data exfiltration or lateral movement before broader network impact occurs.
Threat: 194-26-192-131 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://194.26.192.131/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-06 |
hxxp://194.26.192.131/bin/support.client.exe | online | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 194-26-192-131
let malicious_domains = dynamic(["194.26.192.131"]);
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(["194.26.192.131"]);
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: 194-26-192-131 Malicious URLs detection rule, along with targeted filters and exclusions:
Scenario: Automated Security Tool Health Checks
194-26-192-131 is often part of these upstream feed servers, triggering the rule when agents initiate outbound HTTPS connections during their scheduled maintenance windows (e.g., 02:00–04:00 daily).C:\Program Files\CrowdStrike\fs_qscan.exe or MsMpEng.exe) where the destination URL contains known feed domains associated with the tool vendor.Scenario: Scheduled Cloud Backup and Sync Operations
194-26-192-131 which are misidentified as malicious user browsing activity.C:\Program Files\Veeam\Backup and Replication\Engine\veeamengine.exe) and exclude connections occurring during defined maintenance windows (e.g., 20:00–06:00).Scenario: Third-Party SaaS Integration Webhooks