CVE-2016-20092
Received Received - Intake
Unquoted Service Path in NetDrive 2.6.12 Allows Privilege Escalation

Publication date: 2026-06-19

Last updated on: 2026-06-19

Assigner: VulnCheck

Description
NetDrive 2.6.12 contains an unquoted service path vulnerability in the Netdrive2_Service_Netdrive2 service that allows local users to execute arbitrary code with SYSTEM privileges. Attackers can insert malicious executables in the system root path that will be executed during service startup or system reboot, resulting in privilege escalation.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-19
Last Modified
2026-06-19
Generated
2026-06-19
AI Q&A
2026-06-19
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 4 associated CPEs
Vendor Product Version / Range
netdrive netdrive 2.6.12
bdrive_inc netdrive 2.6.12
bdrive_inc netdrive 3.19.14
bdrive_inc netdrive 3.19.35
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-428 The product uses a search path that contains an unquoted element, in which the element contains whitespace or other separators. This can cause the product to access resources in a parent path.
Attack-Flow Graph
AI Quick Actions
Instant insights powered by AI
Compliance Impact

The vulnerability allows local users to execute arbitrary code with SYSTEM privileges, leading to potential full system compromise through privilege escalation.

Such a security flaw could impact compliance with standards like GDPR and HIPAA, which require protection of sensitive data and secure system configurations to prevent unauthorized access.

If exploited, this vulnerability could lead to unauthorized access or modification of protected data, thereby violating requirements for data confidentiality, integrity, and security controls mandated by these regulations.

Executive Summary

This vulnerability exists in NetDrive version 2.6.12 and earlier, specifically in the Netdrive2_Service_Netdrive2 service. The service path is unquoted, which means Windows can misinterpret the path during service startup or system reboot.

Because the service runs with SYSTEM privileges, a local attacker can exploit this by placing malicious executables in the system root path. When the service starts, it may execute these malicious files, allowing the attacker to run arbitrary code with elevated SYSTEM privileges.

Impact Analysis

This vulnerability can lead to privilege escalation on the affected system. A local attacker with limited privileges can execute arbitrary code with SYSTEM-level privileges, effectively gaining full control over the system.

Such an exploit can result in unauthorized access, modification, or destruction of data, installation of persistent malware, and disruption of system operations.

Detection Guidance

This vulnerability can be detected by checking for unquoted service paths in the Netdrive2_Service_Netdrive2 service configuration. Since the vulnerability arises from an unquoted path that allows local users to execute arbitrary code with SYSTEM privileges, identifying unquoted paths in services is key.

On a Windows system, you can use the following command to check the service path for unquoted spaces:

  • sc qc Netdrive2_Service_Netdrive2

If the path to the executable is not enclosed in quotes and contains spaces, it is vulnerable. Additionally, you can use PowerShell to list all services with unquoted paths:

  • Get-WmiObject win32_service | where { $_.PathName -like '* *' -and $_.PathName -notlike '"*"' } | select Name, PathName

Specifically, look for the Netdrive2_Service_Netdrive2 service in the output to confirm the vulnerability.

Mitigation Strategies

To mitigate this vulnerability immediately, you should correct the unquoted service path by enclosing the entire executable path in double quotes. This prevents Windows from misinterpreting the path and executing malicious code placed in unintended locations.

Alternatively, you can remove or disable the vulnerable Netdrive2_Service_Netdrive2 service if it is not required.

Ensure that only trusted users have local access to the system, as exploitation requires local access.

Finally, check for updates or patches from the software vendor that address this vulnerability and apply them as soon as possible.

Chat Assistant
Ask questions about this CVE
Hi! I’m here to help you understand CVE-2016-20092. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70
EPSS Chart