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
    • 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-25271

CVE-2019-25271: NETGATE Data Backup Privilege Escalation

CVE-2019-25271 is an unquoted service path vulnerability in NETGATE Data Backup 3.0.620 that enables privilege escalation to LocalSystem. This post covers technical details, affected versions, and mitigations.

Published: February 6, 2026

CVE-2019-25271 Overview

CVE-2019-25271 is an unquoted service path vulnerability (CWE-428) affecting NETGATE Data Backup version 3.0.620. The NGDatBckpSrv Windows service is configured with an unquoted path containing spaces, which allows local attackers to exploit the Windows path resolution mechanism to execute arbitrary code with elevated LocalSystem privileges.

Critical Impact

Local privilege escalation to LocalSystem allows complete system compromise, enabling attackers to install malware, access sensitive data, or establish persistent backdoor access on affected Windows systems.

Affected Products

  • NETGATE Data Backup 3.0.620
  • Windows systems running the NGDatBckpSrv service

Discovery Timeline

  • 2026-02-05 - CVE-2019-25271 published to NVD
  • 2026-02-05 - Last updated in NVD database

Technical Details for CVE-2019-25271

Vulnerability Analysis

This vulnerability stems from improper service path configuration in the NETGATE Data Backup software. When a Windows service executable path contains spaces and is not enclosed in quotation marks, the Windows Service Control Manager (SCM) parses the path in a predictable manner that can be exploited for privilege escalation.

The NGDatBckpSrv service runs with LocalSystem privileges, which is the highest privilege level on a Windows system. An attacker with local access and write permissions to specific directories along the service path can place a malicious executable that will be executed instead of the legitimate service binary when the service starts or restarts.

Root Cause

The root cause is the failure to properly quote the service binary path during installation. When the service path contains spaces (such as C:\Program Files\NETGATE\...), Windows attempts to resolve the path by checking for executables at each space-delimited segment. For example, Windows may first check for C:\Program.exe before proceeding to check the full intended path.

Attack Vector

The attack requires local access to the target system with write permissions to a directory that falls within the unquoted path resolution sequence. The attacker must:

  1. Identify the unquoted service path in the Windows registry
  2. Determine writable directory locations along the path parsing sequence
  3. Place a malicious executable (e.g., Program.exe in C:\) that will be executed when the service starts
  4. Wait for or trigger a service restart to execute the payload with LocalSystem privileges

The malicious payload executes with the same privileges as the NGDatBckpSrv service—LocalSystem—granting full control over the affected system.

Detection Methods for CVE-2019-25271

Indicators of Compromise

  • Presence of unexpected executables in root directories or Program Files parent directories (e.g., C:\Program.exe, C:\Program Files.exe)
  • Unusual service start failures or unexpected process spawning during service initialization
  • Registry modifications to the NGDatBckpSrv service path configuration
  • Audit logs showing file creation in system root directories by non-administrative users

Detection Strategies

  • Query Windows services for unquoted paths using PowerShell: Get-WmiObject Win32_Service | Where-Object { $_.PathName -notlike '"*' -and $_.PathName -like '* *' }
  • Monitor for file system activity in directories commonly exploited by unquoted service path attacks
  • Implement endpoint detection rules for executables created in C:\ or C:\Program Files\ parent directories
  • Use SentinelOne's behavioral AI to detect anomalous process creation chains from service contexts

Monitoring Recommendations

  • Enable Windows Security Event logging for service configuration changes (Event ID 7040)
  • Monitor process creation events for unexpected executables running as SYSTEM from unusual paths
  • Deploy file integrity monitoring on critical directory locations
  • Regularly audit service configurations for unquoted paths as part of security hygiene

How to Mitigate CVE-2019-25271

Immediate Actions Required

  • Audit the NGDatBckpSrv service registry entry and manually add quotation marks around the executable path
  • Restrict write permissions on directories along the service path (especially C:\ and C:\Program Files\)
  • Consider disabling or uninstalling NETGATE Data Backup if not critical to operations until properly remediated
  • Monitor for any signs of exploitation on systems where the vulnerable software is installed

Patch Information

No official vendor patch information is available at this time. Organizations should contact NETGATE directly for remediation guidance or consider alternative backup solutions. Additional technical details are available in the VulnCheck Advisory and the Exploit-DB entry #47746.

Workarounds

  • Manually correct the service path by modifying the registry key HKLM\SYSTEM\CurrentControlSet\Services\NGDatBckpSrv\ImagePath to enclose the path in quotation marks
  • Implement application whitelisting to prevent execution of unauthorized binaries
  • Apply the principle of least privilege by restricting user write access to system directories
  • Use SentinelOne's exploit protection and privilege escalation detection to block exploitation attempts
bash
# Registry fix example (run as Administrator)
# Query current service path:
reg query "HKLM\SYSTEM\CurrentControlSet\Services\NGDatBckpSrv" /v ImagePath

# Update with quoted path (adjust path as needed):
reg add "HKLM\SYSTEM\CurrentControlSet\Services\NGDatBckpSrv" /v ImagePath /t REG_EXPAND_SZ /d "\"C:\Program Files\NETGATE\Data Backup 3\NGDatBckpSrv.exe\"" /f

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechNetgate

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.06%

  • 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
  • Netgate Official Website

  • Exploit-DB #47746

  • VulnCheck Advisory on Netgate
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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