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

CVE-2021-47859: ActivIdentity Privilege Escalation Flaw

CVE-2021-47859 is an unquoted service path vulnerability in ActivIdentity 8.2 that enables local attackers to escalate privileges and execute arbitrary code. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2021-47859 Overview

CVE-2021-47859 is an unquoted service path vulnerability affecting ActivIdentity 8.2, specifically in the ac.sharedstore service. This flaw allows local attackers to potentially execute arbitrary code by exploiting the unquoted binary path located at C:\Program Files\Common Files\ActivIdentity\. An attacker with local access can inject malicious executables into the path and escalate privileges when the service starts or restarts.

Critical Impact

Local attackers can achieve privilege escalation by placing a malicious executable in the unquoted service path, potentially gaining SYSTEM-level access on affected systems.

Affected Products

  • ActivIdentity 8.2
  • HID Global ActivIdentity ac.sharedstore service
  • Systems with ActivIdentity software installed with default service configurations

Discovery Timeline

  • 2026-01-21 - CVE CVE-2021-47859 published to NVD
  • 2026-01-21 - Last updated in NVD database

Technical Details for CVE-2021-47859

Vulnerability Analysis

This vulnerability falls under CWE-428 (Unquoted Search Path or Element), a class of vulnerabilities that occurs when a service executable path containing spaces is not properly enclosed in quotation marks in the Windows registry. When Windows attempts to start a service with an unquoted path like C:\Program Files\Common Files\ActivIdentity\service.exe, it sequentially attempts to execute:

  1. C:\Program.exe
  2. C:\Program Files\Common.exe
  3. C:\Program Files\Common Files\ActivIdentity\service.exe

This behavior creates an opportunity for privilege escalation. If an attacker can write a malicious executable to one of these intermediate paths (such as C:\Program.exe or C:\Program Files\Common.exe), and the service runs with elevated privileges (typically SYSTEM), the attacker's code will execute with those same elevated privileges when the service starts.

Root Cause

The root cause of this vulnerability is the improper registration of the ac.sharedstore service in the Windows Service Control Manager. The service's ImagePath registry value contains the executable path without surrounding quotation marks. This is a common misconfiguration during software installation where developers fail to properly quote paths that contain spaces.

Attack Vector

The attack vector is local, requiring the attacker to have write access to a directory in the unquoted path hierarchy. Exploitation typically involves the following steps:

The attacker first identifies the vulnerable service by querying the Windows registry or using tools like wmic to find services with unquoted paths. Once the ac.sharedstore service is identified, the attacker crafts a malicious executable (such as a reverse shell or payload) and places it at one of the exploitable path locations. The attacker then waits for or triggers a service restart, at which point the malicious executable runs with the service's privileges.

For detailed technical information on this vulnerability, refer to the VulnCheck Advisory and Exploit-DB #49703.

Detection Methods for CVE-2021-47859

Indicators of Compromise

  • Unexpected executables appearing in C:\Program.exe, C:\Program Files\Common.exe, or C:\Program Files\Common Files\ActivIdentity\ directories
  • Unusual process execution originating from the ac.sharedstore service context
  • New files with .exe extension in root directories or parent directories of the ActivIdentity installation path
  • Service startup failures or unexpected service behavior for ac.sharedstore

Detection Strategies

  • Monitor Windows file system events for new executable files created in C:\, C:\Program Files\, or C:\Program Files\Common Files\ directories
  • Audit service configurations using PowerShell or WMIC to identify services with unquoted paths containing spaces
  • Implement endpoint detection rules to alert on process execution chains where the parent process is the ac.sharedstore service but the child process is not the expected legitimate executable
  • Use SentinelOne's behavioral AI to detect anomalous execution patterns associated with privilege escalation attempts

Monitoring Recommendations

  • Enable Windows Security Event logging for service state changes (Event IDs 7035, 7036, 7045)
  • Configure file integrity monitoring (FIM) on critical system directories that could be exploited via unquoted paths
  • Deploy SentinelOne agents with process monitoring to track service executable paths and identify deviations from baseline configurations
  • Regularly scan systems for unquoted service path vulnerabilities using security assessment tools

How to Mitigate CVE-2021-47859

Immediate Actions Required

  • Audit all installed services on affected systems to identify unquoted service paths using PowerShell: Get-WmiObject win32_service | Where-Object {$_.PathName -notmatch '^"' -and $_.PathName -match ' '}
  • Manually correct the ac.sharedstore service path in the Windows registry by adding quotation marks around the executable path
  • Restrict write permissions on directories in the service path hierarchy to prevent unauthorized file placement
  • Monitor the HID Global vendor site for official patches or updated installers that address this vulnerability

Patch Information

No official vendor patch information is currently available in the CVE data. Organizations should contact HID Global directly for guidance on obtaining a patched version of ActivIdentity that properly quotes service paths during installation. As a preventive measure, ensure any software updates or reinstallations are tested to verify the service path is properly quoted.

Workarounds

  • Manually add quotation marks to the service's ImagePath registry value located at HKLM\SYSTEM\CurrentControlSet\Services\ac.sharedstore
  • Implement strict access controls on directories that could be exploited (e.g., C:\Program Files\, C:\Program Files\Common Files\)
  • Use application whitelisting to prevent unauthorized executables from running in critical system paths
  • Consider isolating systems running ActivIdentity 8.2 until a proper fix can be applied
bash
# PowerShell command to fix unquoted service path
# Run as Administrator
$serviceName = "ac.sharedstore"
$regPath = "HKLM:\SYSTEM\CurrentControlSet\Services\$serviceName"
$imagePath = (Get-ItemProperty -Path $regPath).ImagePath
if ($imagePath -notmatch '^"') {
    Set-ItemProperty -Path $regPath -Name ImagePath -Value "`"$imagePath`""
}

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechActividentity

  • 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
  • Exploit-DB #49703

  • HID Global Homepage

  • VulnCheck Advisory
  • 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