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

CVE-2026-3780: Installer Privilege Escalation Vulnerability

CVE-2026-3780 is a privilege escalation vulnerability affecting application installers that use untrusted search paths, enabling attackers to execute malicious code with elevated privileges through DLL hijacking.

Published: April 2, 2026

CVE-2026-3780 Overview

CVE-2026-3780 is an untrusted search path vulnerability affecting an application installer that runs with elevated privileges. The vulnerability exists because the installer resolves system executables and DLLs using search paths that can include user-writable directories. This flaw allows a local attacker to place malicious binaries with the same names as legitimate system files in these directories, causing the installer to load or execute the attacker-controlled code instead of the intended system files.

Critical Impact

Local privilege escalation allowing attackers to execute arbitrary code with elevated system privileges during the installation process.

Affected Products

  • Foxit PDF software products (specific versions not disclosed)

Discovery Timeline

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

Technical Details for CVE-2026-3780

Vulnerability Analysis

This vulnerability is classified as CWE-426 (Untrusted Search Path), which occurs when an application searches for critical resources using an externally-controlled search path. When the vulnerable installer executes with elevated privileges, it attempts to load system DLLs and executables. However, instead of using secure, absolute paths to system directories, the application relies on the default DLL search order or PATH environment variable, which may include directories writable by standard users.

The local attack vector requires the attacker to have local access to the target system. The attacker must prepare the malicious payload before the victim initiates the installation process. When the installer is executed by an administrator or through a privilege elevation prompt, it inadvertently loads the attacker's malicious binary with the elevated privileges of the installation process.

Root Cause

The root cause of this vulnerability is the application installer's reliance on the default Windows DLL search order without implementing proper security controls. When Windows searches for DLLs, it follows a specific order that can include the current working directory, user profile directories, and other locations that may be writable by non-privileged users. The installer fails to:

  1. Specify absolute paths when loading system binaries
  2. Implement DLL search order hardening
  3. Validate the integrity of loaded modules
  4. Use the SetDllDirectory("") API call to remove the current directory from the search path

Attack Vector

The attack requires local access to the target system and involves the following sequence:

  1. The attacker identifies which DLLs or executables the installer attempts to load
  2. The attacker creates a malicious DLL or executable with the same name as a target system file
  3. The malicious binary is placed in a directory that appears earlier in the search path than the legitimate system directory
  4. When a user or administrator runs the installer, the malicious binary is loaded instead of the legitimate system file
  5. The attacker's code executes with the elevated privileges of the installer process

This type of attack is commonly known as DLL hijacking or DLL side-loading. The attacker can leverage this to achieve full system compromise, install persistent backdoors, or exfiltrate sensitive data with elevated access.

Detection Methods for CVE-2026-3780

Indicators of Compromise

  • Unexpected DLL or executable files appearing in user-writable directories such as %TEMP%, %USERPROFILE%, or application-specific folders
  • DLL files with system library names located outside of C:\Windows\System32 or other protected directories
  • Anomalous process execution patterns showing the installer loading libraries from non-standard paths
  • File system audit logs indicating creation of files with names matching common system DLLs in user directories

Detection Strategies

  • Enable Windows DLL audit logging through Group Policy to track DLL loading events from non-standard locations
  • Deploy endpoint detection rules that alert on installer processes loading unsigned or untrusted binaries
  • Implement file integrity monitoring on common DLL hijacking target directories
  • Monitor for process creation events where parent-child relationships involve known vulnerable installers and unexpected module loads

Monitoring Recommendations

  • Configure Sysmon with appropriate rules to capture ImageLoad events, specifically filtering for DLLs loaded from user-writable paths by elevated processes
  • Establish baseline behavior for legitimate installation processes to identify deviations
  • Monitor Windows Event ID 7045 (Service Installation) and correlate with preceding DLL load events from suspicious locations
  • Implement application whitelisting or code signing verification for all binaries loaded during installation processes

How to Mitigate CVE-2026-3780

Immediate Actions Required

  • Review and apply the latest security updates from Foxit by consulting their Security Bulletins
  • Ensure installations are performed from trusted, clean directories with restricted write permissions
  • Clear user-writable directories (especially %TEMP% and Downloads folders) before running installers
  • Run installers only from protected network shares or dedicated installation directories with proper access controls

Patch Information

The vendor has published security information through the Foxit Security Bulletins. Users should consult this resource for the latest patched versions and update instructions. Apply all available security updates to remediate this vulnerability.

Workarounds

  • Temporarily restrict write access to directories commonly used for DLL hijacking attacks during installation processes
  • Run installers from directories where only administrators have write access, such as C:\Admin\Installers\
  • Clear the PATH environment variable of any user-controlled directories before executing the installer
  • Consider using application control solutions to prevent execution of unsigned binaries in user-writable directories
bash
# Example: Create a protected installation directory on Windows
mkdir C:\SecureInstall
icacls C:\SecureInstall /grant Administrators:F
icacls C:\SecureInstall /deny Users:W
# Copy installer to protected directory before execution
copy "%USERPROFILE%\Downloads\installer.exe" C:\SecureInstall\
# Run installer from protected location
C:\SecureInstall\installer.exe

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.3

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-426
  • 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