This detection identifies adversary activity involving traffic to known malicious URLs associated with the specific threat signature 91-92-240-150, which often indicates active phishing or command-and-control communications. Proactively hunting for this behavior in Azure Sentinel is critical because early identification of these high-severity indicators allows the SOC team to isolate compromised endpoints and block malicious network flows before lateral movement occurs.
Threat: 91-92-240-150 Total URLs: 2 Active URLs: 2
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://91.92.240.150/Bin/ScreenConnect.ClientSetup.exe | online | malware_download | 2026-08-31 |
hxxps://91.92.240.150/bin/support.client.exe | online | malware_download | 2026-08-31 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 91-92-240-150
let malicious_domains = dynamic(["91.92.240.150"]);
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(["91.92.240.150"]);
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 for the URLhaus: 91-92-240-150 Malicious URLs detection rule, including suggested filters and exclusions tailored for a legitimate enterprise environment.
Scenario: Scheduled Cloud Backup Agent Connectivity
91.92.240.150 for metadata synchronization or API calls during nightly maintenance windows.Backup-Server-Pool) and Process Name (vbm.exe or rubrik-agent). Additionally, filter by time of day to exclude alerts generated between 02:00 and 06:00 local time.Scenario: Automated Security Patch Deployment via WSUS/SCCM
91.92.240.150, the detection logic will trigger during patch cycles./update/metadata if the tool allows path-based filtering within the Hunt package configuration.Scenario: Third-Party SaaS Integration Webhooks (e.g., Salesforce/ServiceNow)