This hunt detects adversary behavior involving the consumption of known malicious web resources identified by URLhaus, specifically targeting the IP address 195.177.94.33 which is associated with active threat campaigns. A SOC team should proactively hunt for this indicator in Azure Sentinel to identify potential initial access or command and control activities that may have bypassed standard perimeter defenses.
Threat: 195-177-94-33 Total URLs: 2 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://195.177.94.33/x | offline | malware_download | 2026-08-06 |
hxxp://195.177.94.33/a.exe | offline | malware_download | 2026-08-06 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 195-177-94-33
let malicious_domains = dynamic(["195.177.94.33"]);
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.33"]);
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-33 Malicious URLs detection rule:
Scenario: Scheduled Software Update Scans
195.177.94.33 to fetch the latest threat intelligence signatures during off-hours maintenance windows.MsMpEng.exe, FalconSensorService) and the event timestamp falls within the defined maintenance window (e.g., 02:00–04:00 local time).Scenario: Admin Manual Threat Intelligence Verification
Invoke-WebRequest, cURL) or browser sessions to verify specific hash indicators before deploying new detection rules. These manual queries generate legitimate traffic to the IP.Scenario: Third-Party SIEM/EDR Integration Sync