Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-32109

CVE-2026-32109: Copyparty File Server XSS Vulnerability

CVE-2026-32109 is a cross-site scripting flaw in Copyparty file server that allows attackers to execute arbitrary JavaScript via malicious file uploads. This article covers technical details, affected versions, and patches.

Published: March 13, 2026

CVE-2026-32109 Overview

CVE-2026-32109 is a Stored Cross-Site Scripting (XSS) vulnerability affecting Copyparty, a portable file server application. This vulnerability allows authenticated attackers with read and write permissions to upload a malicious .prologue.html file that can execute arbitrary JavaScript in a victim's browser context when they click a specially crafted link.

Critical Impact

Attackers can potentially execute arbitrary JavaScript in authenticated user sessions, leading to session hijacking, data theft, or malicious actions performed on behalf of victims.

Affected Products

  • Copyparty versions prior to 1.20.12

Discovery Timeline

  • 2026-03-11 - CVE CVE-2026-32109 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-32109

Vulnerability Analysis

This vulnerability is classified as CWE-79 (Cross-Site Scripting), specifically a stored XSS variant that exploits how Copyparty handles .prologue.html files. The core issue lies in unexpected JavaScript execution behavior when accessing certain URL patterns.

Under normal intended behavior, JavaScript within a .prologue.html file would only execute when directly accessing the file (e.g., https://example.com/foo/.prologue.html). However, the vulnerability allows the same JavaScript to execute when accessing the directory with the ?b parameter (e.g., https://example.com/foo/?b), creating an unexpected attack surface.

Root Cause

The root cause of this vulnerability stems from improper handling of the .prologue.html file content when rendering directory listings with certain query parameters. The server fails to properly isolate or sanitize the prologue file content in alternative access paths, allowing the embedded JavaScript to execute outside its intended scope.

Attack Vector

The attack requires several preconditions to be successful:

  1. The attacker must have both read and write permissions on the target Copyparty server
  2. The attacker uploads a malicious .prologue.html file containing JavaScript payload to a directory
  3. The attacker crafts a link using the ?b query parameter that triggers unintended script execution
  4. The victim must click the crafted link

The vulnerability is partially mitigated by existing strict SameSite cookie policies, which require the malicious link to be clicked from a page served by the Copyparty server itself. This typically requires the attacker to have additional permissions to edit existing resources on the server.

For technical details on the exploitation mechanism, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-32109

Indicators of Compromise

  • Presence of .prologue.html files in server directories containing suspicious JavaScript code
  • User reports of unexpected JavaScript alerts or behavior when browsing directories
  • Log entries showing access patterns to directories with ?b query parameters from external referrers

Detection Strategies

  • Monitor file uploads for .prologue.html files and inspect their contents for malicious JavaScript patterns
  • Implement web application firewall rules to detect and alert on XSS payload patterns in uploaded files
  • Review access logs for unusual patterns of requests containing the ?b query parameter combined with external referrer headers

Monitoring Recommendations

  • Configure alerting for any creation or modification of .prologue.html files across all Copyparty directories
  • Enable detailed access logging to track user interactions with directory listings
  • Implement Content Security Policy (CSP) headers where possible to restrict inline script execution

How to Mitigate CVE-2026-32109

Immediate Actions Required

  • Upgrade Copyparty to version 1.20.12 or later immediately
  • Audit existing .prologue.html files across all directories for any unauthorized or suspicious content
  • Review user permissions and restrict write access to only trusted users who require it
  • Consider temporarily removing or renaming existing .prologue.html files until the upgrade is complete

Patch Information

The vulnerability has been fixed in Copyparty version 1.20.12. The fix addresses the unintended JavaScript execution when accessing directories via the ?b query parameter. Users should update to this version or later to remediate the vulnerability.

For detailed patch information, see the GitHub Security Advisory.

Workarounds

  • Restrict write permissions to trusted users only until the patch can be applied
  • Implement file upload filters to block or quarantine .prologue.html files for review
  • Deploy a reverse proxy with WAF capabilities to filter potentially malicious requests
  • Educate users to avoid clicking links from untrusted sources when authenticated to Copyparty

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechCopyparty

  • SeverityLOW

  • CVSS Score3.7

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:U/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-30974: Copyparty SVG XSS Vulnerability

  • CVE-2026-27948: Copyparty XSS Vulnerability

  • CVE-2026-32108: Copyparty Information Disclosure 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