This hunt detects adversary activity involving communication with specific malicious URLs identified by URLhaus (tagged 37-49-230-40), which often indicate active command-and-control channels or phishing delivery points used to compromise endpoints. The SOC team should proactively hunt for these indicators within Azure Sentinel to rapidly identify and isolate potential infections before they escalate into broader lateral movement or data exfiltration incidents.
Threat: 37-49-230-40 Total URLs: 3 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://37.49.230.40/3.sh | offline | malware_download | 2026-08-18 |
hxxp://37.49.230.40/2.sh | offline | malware_download | 2026-08-18 |
hxxp://37.49.230.40/1.sh | offline | malware_download | 2026-08-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 37-49-230-40
let malicious_domains = dynamic(["37.49.230.40"]);
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.49.230.40"]);
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 the documented false positive scenarios and corresponding exclusions for the URLhaus: 37-49-230-40 Malicious URLs detection rule:
Scenario: Automated Security Tool Health Checks
37-49-230-40 IP range belongs to a cloud service provider used by these tools (e.g., an update server for a specific EDR agent), their routine heartbeat requests will trigger this rule.*.tenable.com, *.qualys.com) and specifically exclude the source IP ranges of internal management servers running these agents during their scheduled maintenance windows (e.g., 02:00–04:00 UTC).Scenario: Software Supply Chain Updates
*.office365.com, *.adobe.io) and whitelist the destination IP address if it is confirmed as part of the organization’s approved software supply chain list in the ServiceNow CMDB.Scenario: Scheduled Backup and Data Replication Jobs *