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-2022-50921

CVE-2022-50921: WOW21 Privilege Escalation Vulnerability

CVE-2022-50921 is a privilege escalation flaw in WOW21 5.0.1.9 caused by an unquoted service path. Attackers can inject malicious code to gain LocalSystem privileges. This post covers technical details, impact, and mitigation.

Updated: January 22, 2026

CVE-2022-50921 Overview

CVE-2022-50921 is an unquoted service path vulnerability affecting WOW21 version 5.0.1.9. This security flaw allows local attackers to potentially execute arbitrary code with elevated system privileges. The vulnerability exists because the service binary path is not properly enclosed in quotation marks, enabling attackers to inject malicious executables that will be launched with LocalSystem permissions during service startup.

Critical Impact

Local privilege escalation to SYSTEM-level access through malicious executable injection in unquoted service path

Affected Products

  • WOW21 5.0.1.9

Discovery Timeline

  • 2026-01-13 - CVE CVE-2022-50921 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2022-50921

Vulnerability Analysis

This vulnerability is classified under CWE-428 (Unquoted Search Path or Element). When Windows services are configured with paths containing spaces that are not enclosed in quotation marks, the operating system's path parsing behavior can be exploited. Windows attempts to locate and execute binaries by iterating through different interpretations of the path, checking each space-separated segment as a potential executable name.

In the case of WOW21, the service executable path is stored in the Windows Registry without proper quoting. When the service starts, Windows follows its standard path resolution algorithm, attempting to find an executable at each potential breakpoint in the path. An attacker with write access to directories earlier in the path hierarchy can plant a malicious executable that will be executed instead of the legitimate service binary.

The exploitation requires local access to the system and write permissions to a directory within the unquoted path. Once a malicious executable is placed in the appropriate location, it will be executed with the same privileges as the service—typically LocalSystem—providing the attacker with complete control over the affected system.

Root Cause

The root cause of this vulnerability is improper handling of the service binary path during WOW21 installation. The installer fails to enclose the executable path in quotation marks when registering the Windows service. This configuration oversight allows the Windows Service Control Manager to misinterpret path segments containing spaces, potentially executing attacker-controlled binaries placed in intermediate directories.

Attack Vector

The attack vector is local, requiring an authenticated user to have write access to a directory within the unquoted service path. The attack proceeds as follows:

  1. The attacker identifies the unquoted service path in the Windows Registry
  2. The attacker determines which directories in the path allow write access
  3. A malicious executable is placed at a location that Windows will check before reaching the legitimate binary
  4. When the service restarts (either manually, through system reboot, or service crash recovery), the malicious executable runs with LocalSystem privileges

For detailed exploitation techniques and proof-of-concept code, see the Exploit-DB #50818 entry.

Detection Methods for CVE-2022-50921

Indicators of Compromise

  • Unexpected executable files appearing in directories within the WOW21 installation path hierarchy
  • New executables with generic names (e.g., Program.exe, WOW.exe) in C:\ or C:\Program Files\ root directories
  • Service crash events followed by suspicious process execution under SYSTEM context
  • Registry modifications to the WOW21 service ImagePath value

Detection Strategies

  • Implement file integrity monitoring on directories within the WOW21 service path
  • Monitor Windows Event logs for Service Control Manager events (Event ID 7000, 7009, 7034) related to the WOW21 service
  • Use PowerShell or WMI queries to periodically audit services with unquoted paths: Get-WmiObject win32_service | Where-Object {$_.PathName -notlike '"*"' -and $_.PathName -like '* *'}
  • Deploy endpoint detection rules to alert on executable creation in root directories and Program Files paths

Monitoring Recommendations

  • Enable audit logging for file creation events in sensitive directories along the service path
  • Configure SentinelOne Deep Visibility to track process creation chains originating from service binaries
  • Monitor for processes spawned by services.exe that do not match expected executable hashes

How to Mitigate CVE-2022-50921

Immediate Actions Required

  • Audit the WOW21 service registry entry and manually quote the binary path
  • Review file system permissions on directories within the service path to restrict write access
  • Monitor for any suspicious executables that may have already been placed in exploitable locations
  • Consider restricting service account permissions using the principle of least privilege

Patch Information

Consult the VulnCheck Security Advisory for the latest remediation guidance. The vendor website may be accessed via the Web Archive Snapshot for additional information regarding updates or patches.

Workarounds

  • Manually correct the service path by adding quotation marks around the executable path in the Windows Registry under HKLM\SYSTEM\CurrentControlSet\Services\WowService
  • Remove write permissions for non-administrative users on all directories in the unquoted path
  • Implement application whitelisting to prevent unauthorized executable execution
  • Deploy SentinelOne's behavioral AI to detect and block suspicious privilege escalation attempts
bash
# Registry fix example - Run as Administrator
reg add "HKLM\SYSTEM\CurrentControlSet\Services\WowService" /v ImagePath /t REG_EXPAND_SZ /d "\"C:\Program Files\WOW21\WowService.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/TechWow21

  • SeverityHIGH

  • CVSS Score8.5

  • 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
  • Web Archive Snapshot

  • Exploit-DB #50818

  • VulnCheck Security Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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