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-2026-3775

CVE-2026-3775: Update Service Privilege Escalation Flaw

CVE-2026-3775 is a privilege escalation vulnerability in application update services that allows attackers to execute code with SYSTEM privileges by placing malicious libraries in user-writable directories.

Published: April 2, 2026

CVE-2026-3775 Overview

CVE-2026-3775 is a DLL Search Order Hijacking vulnerability affecting an application's update service. When the service checks for updates, it loads certain system libraries from a search path that includes directories writable by low-privileged users without restricting the search to trusted system locations. This insecure library loading behavior allows a local attacker to place a malicious DLL in a user-writable directory, which is then loaded and executed with SYSTEM privileges, resulting in local privilege escalation and arbitrary code execution.

Critical Impact

Local attackers with low privileges can escalate to SYSTEM-level access by placing a malicious library in a user-writable directory, enabling complete system compromise and arbitrary code execution with the highest Windows privileges.

Affected Products

  • Application Update Service (specific product versions pending vendor confirmation)
  • See Foxit Security Bulletins for detailed affected version information

Discovery Timeline

  • 2026-04-01 - CVE-2026-3775 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-3775

Vulnerability Analysis

This vulnerability is classified under CWE-427 (Uncontrolled Search Path Element), a common weakness where an application loads a library or executable from a location that can be controlled by an attacker. The update service runs with elevated SYSTEM privileges to apply system-wide updates, but when loading dependent libraries, it follows the standard Windows DLL search order rather than explicitly specifying trusted paths.

The Windows DLL search order typically checks the application directory first, followed by system directories, and then directories in the system PATH environment variable. If any directory in this search path is writable by unprivileged users, an attacker can pre-position a malicious DLL with the expected filename. When the vulnerable service executes and attempts to load the library, it finds and loads the attacker's malicious version instead of the legitimate system library.

Since the update service runs as SYSTEM, any code within the loaded malicious DLL executes with those same elevated privileges, providing the attacker with complete control over the affected system.

Root Cause

The root cause of CVE-2026-3775 lies in the application's failure to implement secure library loading practices. Specifically, the update service does not use absolute paths when loading system libraries and does not implement SafeDllSearchMode or call SetDllDirectory("") to remove user-writable directories from the search path. Additionally, the service does not validate the integrity or signature of loaded libraries before execution, allowing unsigned malicious code to run in a trusted context.

Attack Vector

The attack requires local access to the target system with the ability to write files to a directory included in the DLL search path. The typical attack flow involves:

  1. The attacker identifies a DLL that the update service attempts to load from a non-absolute path
  2. The attacker creates a malicious DLL with the same filename containing arbitrary payload code
  3. The attacker places this malicious DLL in a user-writable directory that appears earlier in the search order than the legitimate library location
  4. When the update service runs (either automatically or triggered by the user), it loads the malicious DLL
  5. The payload executes with SYSTEM privileges, granting the attacker full control

This attack does not require user interaction beyond having the update service execute its normal check routine, which typically occurs automatically at scheduled intervals.

Detection Methods for CVE-2026-3775

Indicators of Compromise

  • Unexpected DLL files appearing in user-writable directories such as C:\Users\*\AppData\Local\Temp\ or application installation directories
  • Process execution anomalies where the update service spawns unexpected child processes
  • File system changes in directories commonly targeted for DLL hijacking attacks
  • Unsigned or suspiciously signed DLL files loaded by trusted application processes

Detection Strategies

  • Monitor for DLL load events from non-standard paths using Windows Sysmon Event ID 7 (Image Loaded)
  • Implement application whitelisting to prevent unauthorized library loading
  • Use endpoint detection tools to flag processes loading DLLs from user-writable locations with elevated privileges
  • Audit file creation events in common hijacking target directories

Monitoring Recommendations

  • Enable detailed process creation and module load logging via Windows Event Log and Sysmon
  • Configure alerts for service processes loading libraries from non-system directories
  • Implement file integrity monitoring on directories in the DLL search path
  • Review update service behavior periodically for anomalous library loading patterns

How to Mitigate CVE-2026-3775

Immediate Actions Required

  • Review the Foxit Security Bulletins for official patch availability
  • Audit directory permissions in the DLL search path and restrict write access where possible
  • Implement application control policies to prevent loading of unsigned DLLs
  • Monitor affected systems for indicators of exploitation until patching is complete

Patch Information

Consult the vendor's official security advisory at Foxit Security Bulletins for the latest patch information and update instructions. Apply the vendor-supplied security update as soon as it becomes available, as this is the only complete remediation for this vulnerability.

Workarounds

  • Restrict write permissions on directories in the DLL search path that are accessible to low-privileged users
  • Use Windows Software Restriction Policies or AppLocker to block execution of unsigned DLLs in user-writable directories
  • Disable automatic update checks and perform manual updates from trusted sources until patched
  • Implement least privilege principles to limit the impact of potential exploitation
bash
# Example: Restrict permissions on common hijacking target directories (Windows PowerShell)
# Review and adjust paths according to your environment
icacls "C:\ProgramData\ApplicationName" /inheritance:r /grant:r "SYSTEM:(OI)(CI)F" /grant:r "Administrators:(OI)(CI)F" /grant:r "Users:(OI)(CI)RX"

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechN/A

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability0.01%

  • 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-427
  • Technical References
  • Foxit Security Bulletins
  • 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