The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2019-25309

CVE-2019-25309: Zilab Remote Console Privilege Escalation

CVE-2019-25309 is an unquoted service path vulnerability in Zilab Remote Console Server 3.2.9 that enables local attackers to execute code with system privileges. This article covers technical details, impact, and mitigation.

Published: February 13, 2026

CVE-2019-25309 Overview

CVE-2019-25309 is an unquoted service path vulnerability affecting Zilab Remote Console Server version 3.2.9. This flaw allows local attackers to potentially execute arbitrary code with elevated system privileges by exploiting the unquoted binary path in the Windows service configuration. When the service starts, Windows may incorrectly parse the path and execute a malicious executable planted by an attacker, granting LocalSystem permissions.

Critical Impact

Local attackers can achieve privilege escalation to LocalSystem by placing malicious executables in strategic locations along the unquoted service path, potentially gaining full control of the affected system.

Affected Products

  • Zilab Remote Console Server 3.2.9

Discovery Timeline

  • 2026-02-11 - CVE CVE-2019-25309 published to NVD
  • 2026-02-11 - Last updated in NVD database

Technical Details for CVE-2019-25309

Vulnerability Analysis

This vulnerability stems from CWE-428 (Unquoted Search Path or Element), a classic Windows privilege escalation vector. When a Windows service is configured with an executable path containing spaces that is not enclosed in quotation marks, the Windows Service Control Manager (SCM) attempts to locate the executable by parsing the path at each space character.

For example, if the service path is C:\Program Files\Zilab\Remote Console Server\service.exe, Windows will attempt to execute in the following order:

  1. C:\Program.exe
  2. C:\Program Files\Zilab\Remote.exe
  3. C:\Program Files\Zilab\Remote Console\Server\service.exe

If an attacker can write to any of these intermediate locations (such as C:\Program.exe if permissions allow), their malicious executable will be run with the privileges of the service—in this case, LocalSystem privileges.

Root Cause

The root cause is improper configuration of the Windows service binary path during installation. The Zilab Remote Console Server installer fails to enclose the service executable path in quotation marks when registering the service with the Windows Service Control Manager. This oversight creates an exploitable condition when the installation path contains spaces, which is common for software installed in the default C:\Program Files\ directory.

Attack Vector

This is a local attack vector requiring the attacker to have local access to the target system with write permissions to one of the intermediate path locations. The attack typically proceeds as follows:

  1. The attacker identifies the vulnerable unquoted service path using tools like wmic service get name,pathname or PowerShell queries
  2. The attacker determines which intermediate paths are writable with their current privileges
  3. A malicious executable is placed in a writable location along the path (e.g., C:\Program Files\Zilab\Remote.exe)
  4. When the service restarts (either manually, through a system reboot, or by triggering a service failure), Windows executes the malicious binary with LocalSystem privileges
  5. The attacker gains elevated access and can perform any action on the system

Technical details and proof-of-concept information can be found in the Exploit-DB entry #47506 and the VulnCheck Advisory.

Detection Methods for CVE-2019-25309

Indicators of Compromise

  • Unexpected executable files in C:\Program.exe or C:\Program Files\Zilab\Remote.exe locations
  • Modified timestamps on files in the Zilab installation directory or parent directories
  • Suspicious service-related events in Windows Event Logs around service start times
  • Newly created executables in directories along the unquoted service path

Detection Strategies

  • Run wmic service get name,pathname,startmode | findstr /i /v """ to identify all services with unquoted paths on the system
  • Monitor file system changes in directories that could be exploited by unquoted path vulnerabilities (e.g., C:\, C:\Program Files\)
  • Use SentinelOne's behavioral AI to detect anomalous process execution originating from service contexts
  • Implement file integrity monitoring on critical system directories

Monitoring Recommendations

  • Enable Windows Event Log auditing for service start events (Event ID 7036) and process creation (Event ID 4688)
  • Configure alerts for executable file creation in root directories and common exploitation paths
  • Deploy endpoint detection and response (EDR) solutions to monitor for privilege escalation attempts
  • Review services running with LocalSystem or elevated privileges on a regular basis

How to Mitigate CVE-2019-25309

Immediate Actions Required

  • Audit all Windows services for unquoted paths using wmic service get name,pathname,startmode
  • Manually correct the service path by enclosing it in quotation marks using the registry or sc config command
  • Restrict write permissions on directories in the unquoted path to administrators only
  • Monitor for any suspicious executable files that may have been placed in exploitation paths

Patch Information

No official vendor patch has been identified in the available data. Organizations should apply the manual mitigation steps below to address this vulnerability. Consider contacting Zilab or reviewing the Tucows Software Preview for any available updates.

Workarounds

  • Manually quote the service path in the Windows Registry at HKLM\SYSTEM\CurrentControlSet\Services\[ServiceName]\ImagePath
  • Use the sc config command to update the service binary path with proper quotation marks
  • Implement strict NTFS permissions on C:\Program Files\ and its subdirectories to prevent unauthorized write access
  • Consider uninstalling Zilab Remote Console Server if it is no longer required or supported
bash
# Configuration example - Fix unquoted service path via command line
sc config "ZilabRemoteConsoleServer" binpath= "\"C:\Program Files\Zilab\Remote Console Server\service.exe\""

# Verify the fix was applied correctly
sc qc "ZilabRemoteConsoleServer"

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechZilab

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-428
  • Technical References
  • Tucows Software Preview

  • Exploit-DB #47506

  • VulnCheck Advisory
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English