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-25269

CVE-2019-25269: Amiti Antivirus Privilege Escalation Flaw

CVE-2019-25269 is an unquoted service path vulnerability in Amiti Antivirus 25.0.640 that enables privilege escalation to LocalSystem. This post covers technical details, affected versions, impact, and mitigation.

Published: February 6, 2026

CVE-2019-25269 Overview

CVE-2019-25269 is an unquoted service path vulnerability affecting Amiti Antivirus version 25.0.640. This security flaw exists in the Windows service configurations where the service executable path contains spaces but is not properly enclosed in quotation marks. Attackers can exploit this vulnerability to inject and execute malicious code with elevated LocalSystem privileges by placing executable files in specific directory locations along the unquoted path.

Critical Impact

Successful exploitation allows attackers to execute arbitrary code with LocalSystem privileges, potentially leading to complete system compromise and persistence on affected Windows systems.

Affected Products

  • Amiti Antivirus 25.0.640

Discovery Timeline

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

Technical Details for CVE-2019-25269

Vulnerability Analysis

This vulnerability falls under CWE-428 (Unquoted Search Path or Element), a classic Windows privilege escalation technique. When a Windows service is configured with an executable path that contains spaces and is not wrapped 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 a service path is configured as C:\Program Files\Amiti Antivirus\service.exe, Windows will attempt to execute files in the following order:

  1. C:\Program.exe
  2. C:\Program Files\Amiti.exe
  3. C:\Program Files\Amiti Antivirus\service.exe

An attacker with local access can place a malicious executable at one of these intermediate paths. When the vulnerable service starts (typically at system boot or when restarted), the malicious code executes with the service's privileges—in this case, LocalSystem, which provides the highest level of Windows system access.

Root Cause

The root cause is improper configuration of the Windows service ImagePath registry value. The service executable path was registered without enclosing quotation marks despite containing spaces in the directory names. This is a common oversight during software installation routines where service paths are written directly to the registry without proper sanitization or quoting.

Attack Vector

The attack requires local access to the target system. An attacker must have sufficient permissions to write executable files to directories along the unquoted service path, such as the root of C:\ or within accessible subdirectories. Once a malicious executable is placed in the appropriate location, the attacker waits for the vulnerable service to restart or triggers a restart through various means. The malicious payload then executes with LocalSystem privileges, enabling full system compromise, persistence establishment, or further lateral movement within the network.

Detection Methods for CVE-2019-25269

Indicators of Compromise

  • Presence of unexpected executable files in root directories or intermediate paths (e.g., C:\Program.exe, C:\Program Files\Amiti.exe)
  • Unusual process execution events originating from non-standard paths with LocalSystem privileges
  • Registry modifications to service ImagePath values

Detection Strategies

  • Monitor the Windows registry for unquoted service paths using tools like PowerShell's Get-WmiObject or dedicated vulnerability scanners
  • Deploy endpoint detection rules to alert on executable creation in root directories or Program Files subdirectories
  • Audit service configurations during system hardening assessments

Monitoring Recommendations

  • Enable Windows Security Event logging for process creation (Event ID 4688) with command line auditing
  • Configure file integrity monitoring on directories commonly targeted by unquoted path exploits
  • Implement behavioral analysis to detect service-related privilege escalation attempts

How to Mitigate CVE-2019-25269

Immediate Actions Required

  • Audit all Windows services for unquoted paths using built-in or third-party tools
  • Manually update the registry to add quotation marks around the vulnerable service path
  • Restrict write permissions on directories along the service path to prevent malicious executable placement

Patch Information

No official vendor patch information is available. Users should manually remediate by enclosing the service executable path in quotation marks within the Windows registry. Additional details are available at the VulnCheck Advisory and Exploit-DB #47747.

Workarounds

  • Modify the ImagePath registry value for the affected service to include quotation marks around the full path
  • Remove write permissions for non-administrative users on root directories and intermediate paths
  • Consider replacing the vulnerable software with an alternative security solution that follows secure service configuration practices
bash
# Registry fix example - add quotes to service path
reg add "HKLM\SYSTEM\CurrentControlSet\Services\AmitiAntivirusService" /v ImagePath /t REG_EXPAND_SZ /d "\"C:\Program Files\Amiti Antivirus\service.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/TechAmiti Antivirus

  • 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 #47747

  • VulnCheck Advisory on Antivirus Vulnerability
  • 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