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

CVE-2026-45229: Quark Drive Auth Bypass Vulnerability

CVE-2026-45229 is an authentication bypass flaw in Quark Drive before 0.8.5 that allows attackers to overwrite admin credentials via mass assignment. This article covers the technical details, affected versions, and steps to secure your system.

Published: May 14, 2026

CVE-2026-45229 Overview

CVE-2026-45229 is a mass assignment vulnerability [CWE-915] in Quark Drive (quark-auto-save) versions prior to 0.8.5. The flaw resides in the POST /update endpoint, which iterates over user-supplied JSON keys and writes them into the config_data dictionary using a deny-list filter. Authenticated attackers can submit an arbitrary webui object to overwrite stored administrator credentials, lock out legitimate operators, and gain persistent control over configured tasks, cloud tokens, and notification services.

Critical Impact

Authenticated attackers can permanently replace administrator credentials and seize persistent control of all stored cloud tokens, scheduled tasks, and push notification integrations.

Affected Products

  • quark-auto-save (Quark Drive) versions prior to 0.8.5
  • The vulnerable POST /update handler in app/run.py
  • Deployments exposing the Quark Drive web UI to authenticated users

Discovery Timeline

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

Technical Details for CVE-2026-45229

Vulnerability Analysis

The vulnerability stems from insecure handling of dynamic configuration updates in the Quark Drive web interface. The POST /update route loops through every key in the incoming JSON body and merges it directly into the in-memory config_data dictionary. The route relies on a small deny-list (dont_save_keys = ["task_plugins_config_default", "api_token"]) to block sensitive fields, but it does not restrict other security-relevant keys such as webui, which stores administrator login credentials.

Because config_data is then serialized to disk via Config.write_json(CONFIG_PATH, config_data), attacker-supplied values persist across restarts. Any authenticated user can therefore overwrite the administrator username and password, replace push configuration secrets, or modify cron schedules.

Root Cause

The root cause is a deny-list rather than an allow-list approach to mass assignment [CWE-915]. The original code blocks only two keys, leaving every other configuration field, including the webui credential block, writable by any authenticated caller. This violates the principle of least privilege for configuration mutation.

Attack Vector

An authenticated attacker sends a crafted POST /update request containing a webui object with new username and password fields. The server merges the object into config_data and writes it to the configuration file. On the next login, only the attacker's credentials are valid. The same primitive can be used to inject malicious push_config endpoints or alter tasklist entries to exfiltrate synced files.

python
     global config_data
     if not is_login():
         return jsonify({"success": False, "message": "未登录"})
-    dont_save_keys = ["task_plugins_config_default", "api_token"]
+    # 使用允许列表防止批量赋值攻击
+    allowed_keys = ["cookie", "crontab", "push_config", "tasklist",
+                    "magic_regex", "plugins", "source"]
     for key, value in request.json.items():
-        if key not in dont_save_keys:
+        if key in allowed_keys:
             config_data.update({key: value})
     Config.write_json(CONFIG_PATH, config_data)
     # 重新加载任务

Source: GitHub Commit ea8377a. The patch replaces the deny-list with an explicit allow-list of seven safe keys, ensuring that webui and other privileged fields cannot be modified through /update.

Detection Methods for CVE-2026-45229

Indicators of Compromise

  • Unexpected modifications to the webui block (username or password hash changes) inside the persisted Quark Drive config file.
  • HTTP POST /update requests whose JSON body contains a webui, api_token, or task_plugins_config_default key.
  • Sudden lockout of legitimate administrators followed by successful logins from new source IP addresses.

Detection Strategies

  • Inspect reverse-proxy and application logs for POST /update requests and alert when the body contains keys outside the documented allow-list (cookie, crontab, push_config, tasklist, magic_regex, plugins, source).
  • Monitor the Quark Drive configuration file for unauthorized writes using file integrity monitoring focused on the webui and push_config sections.
  • Correlate failed administrator logins with subsequent successful logins from previously unseen user agents or IPs.

Monitoring Recommendations

  • Forward Quark Drive application logs and host audit events to a centralized SIEM and retain them for at least 90 days.
  • Track outbound traffic to push notification endpoints; new or unexpected webhook destinations may indicate push_config tampering.
  • Alert on process restarts of quark-auto-save immediately following an authenticated POST /update call.

How to Mitigate CVE-2026-45229

Immediate Actions Required

  • Upgrade quark-auto-save to version 0.8.5 or later, which enforces the allow-list fix from commit ea8377a.
  • Rotate the administrator password, cloud cookies, and any api_token values stored in the configuration after upgrading.
  • Audit the configuration file for unauthorized changes to webui, push_config, and tasklist entries.

Patch Information

The fix shipped in Quark Auto Save v0.8.5 and is implemented in commit ea8377a. Additional advisory information is available from the VulnCheck Security Advisory.

Workarounds

  • Restrict network access to the Quark Drive web UI using a reverse proxy or firewall allow-list until the upgrade is applied.
  • Place a WAF rule in front of /update that rejects requests containing a webui key in the JSON body.
  • Disable shared or low-privilege accounts on the Quark Drive instance to reduce the population of users who can reach the authenticated endpoint.
bash
# Example nginx rule blocking POST /update bodies that reference the webui key
location = /update {
    if ($request_method = POST) {
        access_by_lua_block {
            ngx.req.read_body()
            local body = ngx.req.get_body_data() or ""
            if body:find('"webui"', 1, true) then
                return ngx.exit(403)
            end
        }
    }
    proxy_pass http://quark_auto_save_upstream;
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechQuark Drive

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/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
  • AvailabilityHigh
  • CWE References
  • CWE-915
  • Technical References
  • GitHub Commit Details

  • GitHub Release v0.8.5

  • VulnCheck Security Advisory
  • Related CVEs
  • CVE-2026-45228: Quark Drive XSS 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