This detection identifies adversary behavior where threat actors distribute malicious Android application packages (APKs) through compromised or newly registered web domains to initiate mobile endpoint infections. A SOC team should proactively hunt for these specific URL patterns in Azure Sentinel to intercept early-stage delivery mechanisms that often bypass traditional static file analysis, thereby preventing the initial compromise of mobile devices within the organization.
Threat: apk Total URLs: 2 Active URLs: 1
| URL | Status | Threat | Date Added |
|---|---|---|---|
hxxp://176.65.139.226/Servicer.apk | online | malware_download | 2026-08-23 |
hxxp://176.65.139.226/Services.apk | offline | malware_download | 2026-08-23 |
// Hunt for DNS resolution of URLhaus malicious domains
// Threat: apk
let malicious_domains = dynamic(["176.65.139.226"]);
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(["176.65.139.226"]);
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 5 specific false positive scenarios for the URLhaus: apk Malicious URLs detection rule, along with targeted filters and exclusions:
Scenario: Automated Mobile Device Management (MDM) Policy Distribution
.apk installation packages to Android devices via a central repository URL. The rule may flag these legitimate distribution URLs as malicious if the specific APK hash is new or if the URL structure matches known threat patterns.*.intune.microsoft.com, *.jamfsoftware.com) where the HTTP response content type includes application/vnd.android.package-archive.Scenario: CI/CD Pipeline Artifact Deployment
*.nexus.internal or *.artifactory.corp specifically when the user agent string contains keywords like “Jenkins,” “GitLab-runner,” or “Azure-Pipelines.”Scenario: Scheduled Endpoint Security Agent Updates