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-2021-47896

CVE-2021-47896: PDF Complete Privilege Escalation Flaw

CVE-2021-47896 is an unquoted service path vulnerability in PDF Complete Corporate Edition 4.1.45 that enables local privilege escalation to LocalSystem. This article covers technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2021-47896 Overview

PDF Complete Corporate Edition version 4.1.45 contains an unquoted service path vulnerability in the pdfcDispatcher service that allows local attackers to potentially execute arbitrary code. This vulnerability exists because the service binary path is not properly quoted, enabling attackers to inject malicious executables that will be run with elevated LocalSystem privileges when the service starts.

Critical Impact

Local attackers with write access to specific directories in the service path can achieve privilege escalation to LocalSystem, potentially gaining complete control of the affected system.

Affected Products

  • PDF Complete Corporate Edition 4.1.45

Discovery Timeline

  • 2026-01-23 - CVE CVE-2021-47896 published to NVD
  • 2026-01-26 - Last updated in NVD database

Technical Details for CVE-2021-47896

Vulnerability Analysis

This vulnerability is classified as CWE-428: Unquoted Search Path or Element. When Windows services are configured with executable paths that contain spaces and are not enclosed in quotation marks, the operating system attempts to interpret each space-separated portion of the path as a potential executable location. This behavior can be exploited by attackers who have write permissions to directories earlier in the path hierarchy.

The pdfcDispatcher service in PDF Complete Corporate Edition 4.1.45 is vulnerable because its ImagePath registry value contains an unquoted path. When the service attempts to start, Windows parses the path and may execute a malicious binary planted by an attacker before reaching the intended executable.

Root Cause

The root cause of this vulnerability is the improper configuration of the Windows service registry entry. The ImagePath value in the Windows registry for the pdfcDispatcher service does not have the executable path enclosed in quotation marks. When the path includes spaces (such as C:\Program Files\...), Windows' path resolution mechanism creates opportunities for path hijacking.

Attack Vector

This is a local attack vector requiring the attacker to have local access to the target system and write permissions to directories that precede the intended service executable in the path hierarchy. A successful exploitation flow involves:

  1. The attacker identifies the unquoted service path for pdfcDispatcher
  2. The attacker determines writable directories along the path
  3. A malicious executable is placed in one of these directories with a name that matches a truncated portion of the path (e.g., Program.exe in C:\)
  4. When the pdfcDispatcher service starts or restarts, Windows executes the malicious binary with LocalSystem privileges

The attacker's code would then run with the highest system privileges, enabling complete system compromise including installation of backdoors, credential theft, or further lateral movement within the network.

Detection Methods for CVE-2021-47896

Indicators of Compromise

  • Presence of suspicious executables named Program.exe, PDF.exe, or similar in C:\ or other root directories
  • Unexpected executables in directories along the PDF Complete installation path
  • Service execution anomalies showing the pdfcDispatcher service spawning unexpected child processes

Detection Strategies

  • Query Windows service configurations using sc qc pdfcDispatcher to verify if the ImagePath is unquoted
  • Monitor the Windows registry key HKLM\SYSTEM\CurrentControlSet\Services\pdfcDispatcher for the ImagePath value
  • Implement file integrity monitoring on critical directories such as C:\ and C:\Program Files\
  • Use endpoint detection tools to alert on executable creation in unexpected locations

Monitoring Recommendations

  • Enable Windows Security Event logging for service creation and modification events (Event ID 7045, 7040)
  • Configure alerting for new executable files placed in root directories or Program Files parent folders
  • Monitor process creation events for services launching unexpected binaries with SYSTEM privileges

How to Mitigate CVE-2021-47896

Immediate Actions Required

  • Verify if PDF Complete Corporate Edition 4.1.45 is installed on systems by checking installed programs
  • Audit the pdfcDispatcher service configuration for unquoted paths
  • Restrict write permissions to directories in the service path hierarchy
  • Consider disabling the pdfcDispatcher service if not required for business operations

Patch Information

Organizations should check for updated versions of PDF Complete Corporate Edition that address this vulnerability. For more information, refer to the PDF Complete Download Page or the VulnCheck Advisory: PDF Complete for vendor guidance. The Exploit-DB #49558 entry provides additional technical details about this vulnerability.

Workarounds

  • Manually quote the service path in the Windows registry by modifying the ImagePath value for pdfcDispatcher
  • Restrict write permissions on all directories that appear before spaces in the service path
  • Implement application whitelisting to prevent unauthorized executables from running
  • Consider using Windows Defender Application Control (WDAC) or AppLocker policies to block execution from unexpected paths
bash
# Configuration example - Fix unquoted service path via registry
# WARNING: Backup registry before making changes
# Run in elevated Command Prompt

reg query "HKLM\SYSTEM\CurrentControlSet\Services\pdfcDispatcher" /v ImagePath
# If path is unquoted, update it (replace ACTUAL_PATH with the correct path):
# reg add "HKLM\SYSTEM\CurrentControlSet\Services\pdfcDispatcher" /v ImagePath /t REG_EXPAND_SZ /d "\"C:\Program Files\PDF Complete\pdfsvc.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/TechPdf Complete

  • 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
  • PDF Complete Download Page

  • Exploit-DB #49558

  • PDF Complete Documentation

  • VulnCheck Advisory: PDF Complete
  • Related CVEs
  • CVE-2020-36957: PDF Complete Privilege Escalation Flaw
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