This hypothesis detects adversary behavior involving the consumption of newly identified malicious URLs from the URLhaus threat intelligence feed, specifically targeting the signature associated with IP 37-77-150-120 to identify potential command-and-control or phishing activities. A SOC team should proactively hunt for this indicator in Azure Sentinel to rapidly isolate compromised endpoints and prevent lateral movement before the malicious URLs are fully propagated across the broader threat landscape.
Threat: 37-77-150-120 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://37.77.150.120/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-09 |
hxxps://37.77.150.120/bin/support.client.exe | online | malware_download | 2026-08-09 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 37-77-150-120
let malicious_domains = dynamic(["37.77.150.120"]);
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(["37.77.150.120"]);
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 exclusion strategies for the URLhaus: 37-77-150-120 Malicious URLs detection rule:
Scenario: Automated Security Scanner Traffic
37-77-150-120.nessus.exe, qualyspc_agent.exe, or tenable.scanner and the destination URL contains the specific hash signature of the scanner’s update server.Scenario: Scheduled Cloud Backup Agent Updates
37-77-150-120, triggering the rule when downloading large configuration manifests.Veeam.Backup.Service.exe or rubrik-agent, provided the traffic volume exceeds 5MB (indicating a bulk update rather than a suspicious small beacon).