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
    • 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-35608

CVE-2026-35608: QuickDrop Stored XSS Vulnerability

CVE-2026-35608 is a stored XSS flaw in QuickDrop that allows attackers to execute malicious scripts via crafted SVG files. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-35608 Overview

CVE-2026-35608 is a stored Cross-Site Scripting (XSS) vulnerability affecting QuickDrop, an easy-to-use file sharing application. Prior to version 1.5.3, the application's file preview endpoint fails to properly sanitize SVG file content, allowing attackers to upload malicious SVG files containing embedded JavaScript payloads. When any user views the file preview, the script executes in the context of the application's domain, potentially leading to session hijacking, credential theft, or unauthorized actions on behalf of the victim.

Critical Impact

Attackers can execute arbitrary JavaScript in victims' browsers by uploading malicious SVG files, enabling session hijacking, data theft, and phishing attacks within the application context.

Affected Products

  • QuickDrop versions prior to 1.5.3

Discovery Timeline

  • 2026-04-07 - CVE-2026-35608 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-35608

Vulnerability Analysis

This stored XSS vulnerability is classified under CWE-79 (Improper Neutralization of Input During Web Page Generation). The vulnerability exists because QuickDrop's file upload functionality via the /api/file/upload-chunk endpoint accepts SVG files without adequate content sanitization. SVG (Scalable Vector Graphics) files are XML-based and can contain embedded <script> tags or event handlers that execute JavaScript when the file is rendered in a browser.

The attack requires no authentication to upload malicious files, though user interaction is required for exploitation—a victim must view the file preview for the payload to execute. The vulnerability allows cross-site impact, affecting users who view the malicious file preview regardless of who uploaded it.

Root Cause

The root cause of this vulnerability is inadequate input validation and content sanitization of uploaded SVG files. The application's /api/file/upload-chunk endpoint accepts SVG files and subsequently serves them for preview without stripping potentially malicious content such as embedded JavaScript, event handlers, or external resource references. When SVG files are rendered inline in a web browser, any embedded scripts execute with the same origin permissions as the application itself.

Attack Vector

An attacker exploits this vulnerability through a network-based attack by uploading a specially crafted SVG file to the QuickDrop application. The attack flow is as follows:

  1. The attacker crafts an SVG file containing malicious JavaScript payload (e.g., using <script> tags or onload event handlers)
  2. The attacker uploads the malicious SVG file via the /api/file/upload-chunk endpoint
  3. The file is stored on the server without sanitization
  4. When any user (including administrators) navigates to preview the uploaded file, the malicious JavaScript executes in their browser
  5. The script runs in the context of the application's domain, allowing access to cookies, session tokens, and the ability to perform actions as the victim

This is a stored XSS attack, meaning the payload persists on the server and affects all users who view the compromised file preview.

Detection Methods for CVE-2026-35608

Indicators of Compromise

  • Presence of SVG files containing <script> tags, onload, onerror, or other JavaScript event handlers in uploaded file storage
  • Unusual SVG file uploads with embedded javascript: URI schemes
  • Web server logs showing requests to file preview endpoints followed by suspicious outbound connections
  • User reports of unexpected browser behavior when viewing file previews

Detection Strategies

  • Implement file content inspection rules to detect SVG files containing JavaScript elements such as <script>, onclick, onload, onerror, or javascript: URIs
  • Monitor web application firewall (WAF) logs for SVG uploads with suspicious XML content patterns
  • Review access logs for the /api/file/upload-chunk endpoint to identify unusual upload patterns or sources

Monitoring Recommendations

  • Enable content security policy (CSP) violation reporting to detect when inline scripts attempt to execute
  • Configure SIEM alerts for any SVG file uploads that trigger content filtering rules
  • Monitor for unusual session activity following file preview access, which may indicate session hijacking attempts

How to Mitigate CVE-2026-35608

Immediate Actions Required

  • Upgrade QuickDrop to version 1.5.3 or later immediately
  • Review existing uploaded SVG files for malicious content and remove any suspicious files
  • Implement Content Security Policy (CSP) headers to restrict inline script execution as a defense-in-depth measure
  • Consider temporarily blocking SVG file uploads until the patch is applied

Patch Information

The vulnerability has been fixed in QuickDrop version 1.5.3. Organizations should upgrade to this version or later to remediate the vulnerability. The fix is available via the GitHub Release v1.5.3. For detailed technical information about the vulnerability, refer to the GitHub Security Advisory GHSA-f577-ffvv-w6rr.

Workarounds

  • Block SVG file uploads at the application or WAF level until the patch can be applied
  • Serve uploaded SVG files with the Content-Disposition: attachment header to force download instead of inline rendering
  • Implement strict CSP headers that disable inline JavaScript execution: Content-Security-Policy: script-src 'self'
  • Use SVG sanitization libraries to strip potentially malicious content from uploaded SVG files before storage
bash
# Example: Configure web server to force SVG downloads (Apache)
<FilesMatch "\.svg$">
    Header set Content-Disposition "attachment"
    Header set X-Content-Type-Options "nosniff"
</FilesMatch>

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechQuickdrop

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:L/SI:L/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Release v1.5.3

  • GitHub Security Advisory GHSA-f577-ffvv-w6rr
  • Latest CVEs
  • CVE-2026-46333: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-2586: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-2587: Eclipse Glassfish RCE Vulnerability

  • CVE-2026-45255: FreeBSD bsdinstall/bsdconfig RCE Flaw
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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