This detection identifies adversary activity involving traffic to a specific cluster of 13 malicious URLs associated with the IP address 167.86.99.169, which are known indicators of compromise for phishing or command-and-control communication. The SOC team should proactively hunt for these URLs in Azure Sentinel to rapidly isolate affected endpoints and prevent potential data exfiltration or lateral movement before broader infection occurs.
Threat: 167-86-99-169 Total URLs: 13 Active URLs: 13
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://167.86.99.169/cat.sh | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/telnet.sh | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.arc | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.i486 | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.armv5l | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.armv4l | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.armv6l | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.sh4 | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.armv7l | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.mipsel | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.mipsrouter | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.sparc | online | malware_download | 2026-08-18 |
hxxp://167.86.99.169/iran.powerpc | online | malware_download | 2026-08-18 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: 167-86-99-169
let malicious_domains = dynamic(["167.86.99.169"]);
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(["167.86.99.169"]);
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 4 specific false positive scenarios for the URLhaus: 167-86-99-169 Malicious URLs detection rule, including tailored filters and exclusions:
Scenario: Automated Security Scanner Traffic
167-86-99-169 signature, triggering alerts when they validate certificate chains or fetch threat intelligence feeds.AssetType=Scanner) or IP ranges of all internal security scanning appliances to the allowlist for this detection logic.Scenario: Cloud Backup and Synchronization Jobs
167-86-99-169 signature encompasses a specific CDN or cloud provider IP used by these backup services, legitimate data synchronization traffic will be flagged as malicious URL access.02:00 - 06:00 UTC) for processes named VeeamBackupService.exe or RubrikAgent. Alternatively, exclude traffic originating from the specific service accounts used by these backup tools.Scenario: Software Update and Patch Management