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

CVE-2026-1591: Foxit PDF Editor Cloud XSS Vulnerability

CVE-2026-1591 is a stored XSS vulnerability in Foxit PDF Editor Cloud that allows attackers to execute malicious JavaScript through crafted usernames. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-1591 Overview

Foxit PDF Editor Cloud (pdfonline) contains a stored cross-site scripting (XSS) vulnerability in the file upload feature. A malicious username is embedded into the upload file list without proper escaping, allowing arbitrary JavaScript execution when the list is displayed. This vulnerability affects pdfonline.foxit.com versions before 2026-02-03.

Critical Impact

Attackers can execute arbitrary JavaScript in the context of authenticated users viewing the file upload list, potentially leading to session hijacking, credential theft, or unauthorized actions on behalf of victims.

Affected Products

  • Foxit PDF Editor Cloud (pdfonline.foxit.com) - versions before 2026-02-03

Discovery Timeline

  • 2026-02-03 - CVE CVE-2026-1591 published to NVD
  • 2026-02-03 - Last updated in NVD database

Technical Details for CVE-2026-1591

Vulnerability Analysis

This stored cross-site scripting vulnerability (CWE-79) exists in the file upload feature of Foxit PDF Editor Cloud. The application fails to properly sanitize or escape user-controlled input, specifically username data, before rendering it within the upload file list interface. When a user with a maliciously crafted username uploads a file, the username is stored server-side and subsequently rendered without adequate output encoding whenever other users view the file list.

Unlike reflected XSS attacks that require victim interaction with a malicious link, stored XSS persists within the application's database. This means every user who accesses the affected file list page becomes a potential victim without needing to click any specially crafted links. The attack surface is particularly concerning in collaborative cloud environments where multiple users may interact with shared file lists.

Root Cause

The root cause of this vulnerability is improper output encoding when rendering user-supplied data (usernames) in the file upload list view. The application stores the username as provided during file upload operations but fails to apply appropriate HTML entity encoding or JavaScript escaping when this data is subsequently displayed to other users. This violates the fundamental security principle of never trusting user input and always encoding output based on the rendering context.

Attack Vector

The attack is network-based and requires low privileges (an authenticated user account) to exploit. The attacker must first register or modify their account to include malicious JavaScript code in their username field. When they subsequently upload a file to the cloud service, their malicious username is stored alongside the file metadata. Any user who views the upload file list will have the malicious JavaScript execute in their browser session.

The vulnerability mechanism works as follows: an attacker crafts a username containing JavaScript payload (such as event handlers or script tags), uploads a file to the shared PDF Editor Cloud environment, and waits for other users to browse the file list. When the victim's browser renders the file list page, the unsanitized username is injected directly into the DOM, causing the malicious script to execute with the victim's session privileges.

Detection Methods for CVE-2026-1591

Indicators of Compromise

  • Usernames containing HTML tags, JavaScript event handlers (e.g., onerror, onload, onclick), or <script> elements
  • Unusual characters in username fields such as <, >, ", ', or encoded variants
  • Browser console errors indicating blocked inline scripts if Content Security Policy is enabled
  • Unexpected outbound requests from user browsers to unfamiliar domains after viewing file lists

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block XSS payloads in username fields and form submissions
  • Monitor server logs for account registrations or profile updates containing suspicious HTML/JavaScript patterns
  • Enable Content Security Policy (CSP) headers with strict script-src directives to mitigate script execution
  • Deploy browser-based XSS auditing and logging to detect attempted script injections

Monitoring Recommendations

  • Review audit logs for user account modifications, particularly username changes with special characters
  • Monitor for unusual data exfiltration patterns from client browsers accessing the file upload list
  • Implement anomaly detection for accounts that frequently update profile information with non-standard characters
  • Track and alert on CSP violation reports to identify exploitation attempts

How to Mitigate CVE-2026-1591

Immediate Actions Required

  • Update Foxit PDF Editor Cloud to the patched version released on 2026-02-03
  • Review existing user accounts for usernames containing suspicious HTML or JavaScript content
  • Implement input validation to restrict special characters in username fields
  • Enable Content Security Policy headers as a defense-in-depth measure

Patch Information

Foxit has addressed this vulnerability in the update released on 2026-02-03. Organizations using pdfonline.foxit.com should verify they are running the latest version. For detailed patch information, consult the Foxit Security Bulletins.

Workarounds

  • Implement server-side input validation to reject usernames containing HTML special characters (<, >, ", ', &)
  • Apply strict output encoding (HTML entity encoding) when rendering any user-supplied data in HTML contexts
  • Deploy Content Security Policy headers with script-src 'self' to prevent inline script execution
  • Consider using a Web Application Firewall (WAF) to filter XSS payloads at the network edge
bash
# Example Content Security Policy header configuration (Apache)
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; frame-ancestors 'none';"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechFoxit Pdf Editor

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:H/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • Foxit Security Bulletins
  • Related CVEs
  • CVE-2026-1592: Foxit PDF Editor Cloud XSS Vulnerability

  • CVE-2024-49576: Foxit PDF Editor Use-After-Free RCE Flaw

  • CVE-2023-27363: Foxit PDF Editor RCE Vulnerability

  • CVE-2022-28672: Foxit PDF Editor RCE 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