This hunt detects adversary behavior involving the consumption of known malicious URLs associated with IP 195.177.94.141, which often indicate active phishing campaigns or command-and-control communication. A SOC team should proactively search for these indicators in Azure Sentinel to identify early-stage compromises and prevent lateral movement before broader network impact occurs.
Threat: 195-177-94-141 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://195.177.94.141/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-17 |
hxxps://195.177.94.141/bin/support.client.exe | online | malware_download | 2026-08-17 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 195-177-94-141
let malicious_domains = dynamic(["195.177.94.141"]);
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.141"]);
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 mitigation strategies for the URLhaus: 195-177-94-141 Malicious URLs detection rule:
Scenario: Automated Software Update Scanners (e.g., WSUS, SCCM, or JFrog Artifactory)
195.177.94.141 hosts a legitimate update feed or metadata file used by these tools, the scanner’s background polling will trigger the alert every time it connects.Patch-Server-01, SCCM-Site-Server) and the specific Process Name (e.g., wsusclient.exe, ccmexec.exe). Alternatively, whitelist the destination URL path if it matches a known update feed pattern.Scenario: Scheduled Cloud Backup or Archiving Jobs
195.177.94.141 is part of the infrastructure for a specific SaaS backup provider or an external log aggregation service, scheduled jobs will generate traffic that mimics malicious URL access.svc-backup-agent). Additionally, add the destination URL to the “Trusted URLs” list in the detection logic.