This hunt detects adversary activity involving communication with known malicious URLs identified by URLhaus, specifically targeting the IP address 195.177.94-26 to identify potential command and control or phishing campaigns. A SOC team should proactively search for these indicators in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the threat escalates.
Threat: 195-177-94-26 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://195.177.94.26/Bin/ScreenConnect.ClientSetup.exe | offline | malware_download | 2026-08-06 |
hxxps://195.177.94.26/bin/support.client.exe | offline | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 195-177-94-26
let malicious_domains = dynamic(["195.177.94.26"]);
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(["195.177.94.26"]);
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: 195-177-94-26 Malicious URLs detection rule in an enterprise environment:
Scenario: Automated Security Scanner Traffic
Source Host field for known scanner IPs (e.g., SourceIP IN [10.50.20.10, 10.50.20.11]) and restrict the rule to exclude traffic where the User Agent contains keywords like “Tenable,” “Qualys,” or “Defender.”Scenario: Scheduled Backup and Sync Jobs
Time BETWEEN 01:00 AND 05:00) and exclude specific service accounts (e.g., `AccountName =