A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-45228

CVE-2026-45228: Quark Drive XSS Vulnerability

CVE-2026-45228 is a stored XSS flaw in Quark Drive before 0.8.5 that allows authenticated attackers to inject malicious scripts via System Configuration. This article covers technical details, affected versions, and mitigation.

Published: May 14, 2026

CVE-2026-45228 Overview

CVE-2026-45228 is a stored cross-site scripting (XSS) vulnerability in Quark Drive versions before 0.8.5. The flaw resides in the System Configuration page, where the Vue.js template renders push_config key names using the v-html directive without escaping. Authenticated attackers can submit HTML or JavaScript payloads as key names through the POST /update endpoint. The payloads persist to disk and execute in the browsers of every authenticated user who later opens the System Configuration tab. The issue is tracked under CWE-79.

Critical Impact

Stored XSS enables session cookie exfiltration and arbitrary authenticated actions against any user viewing the System Configuration tab.

Affected Products

  • Quark Drive (quark-auto-save) versions prior to 0.8.5
  • System Configuration page rendering push_config key names
  • Deployments exposing the POST /update endpoint to authenticated users

Discovery Timeline

  • 2026-05-13 - CVE-2026-45228 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-45228

Vulnerability Analysis

The vulnerability stems from unsafe template rendering in the Quark Drive web interface. The System Configuration view iterates over the push_config object and emits each key name through Vue.js's v-html directive. v-html renders raw HTML and bypasses Vue's default text interpolation escaping. Any HTML or JavaScript provided as a configuration key name is parsed by the browser when the page loads.

Because configuration data is submitted through the POST /update endpoint and written to disk, the injected payload persists across sessions and restarts. Every authenticated user who navigates to the System Configuration tab triggers execution in their browser context. The attacker requires only low-privilege authenticated access, and the victim must visit the affected tab.

Impact includes session cookie theft, account takeover through forced configuration changes, and arbitrary actions performed under the victim's identity. Administrators visiting the tab expose the highest-privilege sessions on the instance.

Root Cause

The root cause is improper neutralization of input during web page generation [CWE-79]. The frontend trusts attacker-controlled configuration key names and renders them as HTML rather than text. No server-side sanitization is applied before persistence, and no client-side escaping is applied at render time.

Attack Vector

An authenticated attacker submits a crafted request to POST /update containing a push_config entry whose key name is an HTML or JavaScript payload. The server persists the entry. When any authenticated user opens the System Configuration tab, the payload executes in the browser. See the VulnCheck Security Advisory for additional technical detail.

// No verified exploit code is published. Conceptually, the malicious key name
// is injected via POST /update and rendered by Vue's v-html directive on the
// System Configuration page, causing script execution in viewer browsers.

Detection Methods for CVE-2026-45228

Indicators of Compromise

  • push_config entries whose key names contain HTML tags such as <script>, <img>, <svg>, or event handler attributes like onerror= and onload=
  • Unexpected outbound requests from administrator browsers immediately after loading the System Configuration tab
  • Configuration files on disk containing non-alphanumeric characters in push_config key names

Detection Strategies

  • Inspect the persisted Quark Drive configuration file for push_config keys that contain angle brackets, quotes, or JavaScript URI schemes.
  • Review HTTP access logs for POST /update requests from low-privilege accounts containing payload-like strings in the request body.
  • Monitor browser-side errors or Content Security Policy violations originating from the /system or configuration routes.

Monitoring Recommendations

  • Alert on any modification to push_config and capture the requesting user and source IP.
  • Track session cookie usage patterns for administrators after they access the System Configuration tab, looking for replay from new IP addresses.
  • Forward Quark Drive application logs to a centralized log platform for correlation with authentication events.

How to Mitigate CVE-2026-45228

Immediate Actions Required

  • Upgrade Quark Drive (quark-auto-save) to version 0.8.5 or later, which contains the fix referenced in the GitHub Release v0.8.5.
  • Audit the current configuration file and remove any push_config keys with suspicious or non-standard characters.
  • Rotate session cookies and credentials for users who accessed the System Configuration tab before patching.

Patch Information

The maintainers fixed the issue in version 0.8.5. The remediation commit is available in the GitHub Commit Log. The fix removes the use of v-html for untrusted key names and applies proper escaping during template rendering.

Workarounds

  • Restrict access to the POST /update endpoint to trusted administrators using a reverse proxy ACL until the upgrade is applied.
  • Deploy a strict Content Security Policy that disallows inline script execution on the Quark Drive web interface to reduce payload impact.
  • Avoid using the System Configuration tab on unpatched instances until the upgrade to 0.8.5 is complete.
bash
# Upgrade quark-auto-save to the patched release
git fetch --tags
git checkout v0.8.5
# Or, for Docker-based deployments
docker pull cp0204/quark-auto-save:v0.8.5
docker compose up -d

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechQuark Drive

  • SeverityMEDIUM

  • CVSS Score5.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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 Commit Log

  • GitHub Release v0.8.5

  • VulnCheck Security Advisory
  • Related CVEs
  • CVE-2026-45229: Quark Drive Auth Bypass Vulnerability
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