This hunt detects adversary behavior involving the consumption of known malicious web resources hosted on the IP address 192.159-99-164, which are frequently associated with phishing campaigns and malware distribution. A proactive search within Azure Sentinel is essential to identify early-stage compromise indicators before they escalate into broader lateral movement or data exfiltration events across the enterprise network.
Threat: 192-159-99-164 Total URLs: 8 Active URLs: 0
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxps://192.159.99.164/728277/base/base.apk | offline | malware_download | 2026-08-27 |
hxxps://192.159.99.164/463869/base/base.apk | offline | malware_download | 2026-08-27 |
hxxps://192.159.99.164/840474/base/base.apk | offline | malware_download | 2026-08-27 |
hxxps://192.159.99.164/840474/dropper/NextGen_mParivahan.apk | offline | malware_download | 2026-08-27 |
hxxps://192.159.99.164/136384/base/base.apk | offline | malware_download | 2026-08-27 |
hxxps://192.159.99.164/710893/dropper/NextGen_mParivahan.apk | offline | malware_download | 2026-08-27 |
hxxps://192.159.99.164/463869/dropper/NextGen_mParivahan.apk | offline | malware_download | 2026-08-27 |
hxxps://192.159.99.164/136384/dropper/NextGen_mParivahan.apk | offline | malware_download | 2026-08-27 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 192-159-99-164
let malicious_domains = dynamic(["192.159.99.164"]);
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(["192.159.99.164"]);
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 filters for the URLhaus: 192-159-99-164 Malicious URLs detection rule in a legitimate enterprise environment:
Scenario: Automated Security Scanner Traffic
scanner-01.corp.local) or specific IP ranges dedicated to security operations (e.g., 10.50.20.0/24).Scenario: Scheduled Cloud Backup and Sync Jobs
Backup-Job-Prod) will trigger the detection while uploading metadata or syncing logs.VeeamTransport.exe or AzureBackupAgent.exe occurring during defined maintenance windows (e.g., 01:00–05:00 UTC).