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

CVE-2022-39959: Panini Everest Engine Privilege Escalation

CVE-2022-39959 is a privilege escalation vulnerability in Panini Everest Engine 2.0.4 caused by an unquoted service path. Attackers can exploit this to execute malicious code with SYSTEM privileges. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 11, 2026

CVE-2022-39959 Overview

CVE-2022-39959 is a privilege escalation vulnerability affecting Panini Everest Engine 2.0.4 on Windows systems. The vulnerability stems from an unquoted service path in the Everest Engine service, which runs with SYSTEM privileges. Unprivileged local users can exploit this flaw by placing a malicious executable named Everest.exe in the %PROGRAMDATA%\Panini folder. When the service starts, Windows path resolution may execute the attacker's Trojan horse instead of the legitimate EverestEngine.exe binary.

Critical Impact

Local privilege escalation to SYSTEM-level access through unquoted service path exploitation, enabling complete system compromise.

Affected Products

  • Panini Everest Engine 2.0.4
  • Microsoft Windows (all versions running affected Panini software)

Discovery Timeline

  • 2022-10-07 - CVE CVE-2022-39959 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-39959

Vulnerability Analysis

This vulnerability is classified as CWE-428 (Unquoted Search Path or Element), a common Windows privilege escalation technique. The Panini Everest Engine service is configured to execute from the path %PROGRAMDATA%\Panini\Everest Engine\EverestEngine.exe. However, this path contains spaces and is not properly enclosed in quotation marks in the service configuration.

When Windows attempts to start a service with an unquoted path containing spaces, it follows a specific search order, attempting to execute binaries at each possible path interpretation. In this case, Windows will first look for %PROGRAMDATA%\Panini\Everest.exe before trying the intended full path. Since unprivileged users have write access to the %PROGRAMDATA%\Panini folder, an attacker can place a malicious Everest.exe file there.

When the Everest Engine service restarts (either manually, after a system reboot, or through other means), the malicious executable runs with SYSTEM privileges instead of the legitimate application, granting the attacker complete control over the affected system.

Root Cause

The root cause is improper service configuration during installation. The Panini Everest Engine installer failed to enclose the service executable path in quotation marks, combined with overly permissive directory permissions on the %PROGRAMDATA%\Panini folder that allow unprivileged users to write files.

Attack Vector

The attack requires local access to the target system. An attacker with low-privilege user credentials can exploit this vulnerability without any user interaction. The attacker creates a malicious executable named Everest.exe in the %PROGRAMDATA%\Panini directory and waits for the Everest Engine service to restart. Upon service restart, the malicious payload executes with SYSTEM privileges, providing the attacker with the highest level of Windows system access.

The exploitation path follows this sequence: the attacker identifies the vulnerable unquoted service path, creates a malicious payload binary, places it in the writable %PROGRAMDATA%\Panini directory as Everest.exe, and triggers a service restart through a system reboot or other means. Technical details and proof-of-concept information are available in the GitHub PoC Repository.

Detection Methods for CVE-2022-39959

Indicators of Compromise

  • Presence of unexpected Everest.exe file in %PROGRAMDATA%\Panini\ directory
  • Unauthorized file creation events in the %PROGRAMDATA%\Panini\ folder
  • Suspicious process execution events where Everest.exe spawns from the Panini directory
  • SYSTEM-level processes originating from non-standard Panini executable paths

Detection Strategies

  • Monitor file system changes in %PROGRAMDATA%\Panini\ for creation of Everest.exe
  • Query Windows services for unquoted paths using PowerShell: Get-WmiObject Win32_Service | Where-Object {$_.PathName -notmatch '^"' -and $_.PathName -match ' '}
  • Implement file integrity monitoring on critical service directories
  • Audit service startup events for unexpected executable paths

Monitoring Recommendations

  • Enable Windows Security Event logging for process creation (Event ID 4688) with command-line auditing
  • Configure Sysmon to monitor file creation events in %PROGRAMDATA%\ subdirectories
  • Alert on any new executable files appearing in the Panini installation directory
  • Monitor service control manager events (Event ID 7045) for service path modifications

How to Mitigate CVE-2022-39959

Immediate Actions Required

  • Verify whether Everest.exe exists in %PROGRAMDATA%\Panini\ and remove if unauthorized
  • Update the service path to include proper quotation marks around the full executable path
  • Review and restrict directory permissions on %PROGRAMDATA%\Panini\ to prevent unprivileged write access
  • Contact Panini for updated software versions that address this vulnerability

Patch Information

Consult the Panini News Announcement page for the latest information on patches and updated versions. Organizations should contact Panini directly to obtain patched versions of the Everest Engine software that properly quote the service path and implement secure directory permissions.

Workarounds

  • Manually fix the unquoted path by modifying the service registry entry to include quotation marks
  • Restrict write permissions on %PROGRAMDATA%\Panini\ to administrators only
  • Implement application whitelisting to prevent unauthorized executables from running
  • Use Windows Group Policy to restrict executable execution from data directories
bash
# Fix the unquoted service path in Windows Registry
# Run as Administrator in Command Prompt

# First, verify the current service path
sc qc "EverestEngine"

# Update the service binary path with proper quotation marks
sc config "EverestEngine" binPath= "\"C:\ProgramData\Panini\Everest Engine\EverestEngine.exe\""

# Verify the fix was applied
sc qc "EverestEngine"

# Restrict directory permissions (PowerShell as Administrator)
# icacls "C:\ProgramData\Panini" /inheritance:d
# icacls "C:\ProgramData\Panini" /remove:g "Users"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechPanini Everest Engine

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.57%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-428
  • Technical References
  • GitHub PoC Repository
  • Vendor Resources
  • Panini News Announcement
  • 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