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-2024-3829

CVE-2024-3829: Qdrant Path Traversal Vulnerability

CVE-2024-3829 is a path traversal vulnerability in Qdrant that allows attackers to read and write arbitrary files via symlink manipulation during snapshot recovery. This post covers technical details, affected versions, and mitigations.

Published: April 8, 2026

CVE-2024-3829 Overview

CVE-2024-3829 is a symlink attack vulnerability in Qdrant, an open-source vector database, affecting version 1.9.0-dev. The vulnerability exists in the snapshot recovery process, where attackers can manipulate snapshot files to include symbolic links. This allows for both arbitrary file read and arbitrary file write operations on the underlying server filesystem. By crafting malicious snapshot files containing symlinks pointing to sensitive system files, an attacker can read confidential data or overwrite critical files, potentially leading to a complete system takeover.

Critical Impact

This vulnerability allows unauthenticated remote attackers to read and write arbitrary files on the server through malicious snapshot manipulation, potentially resulting in full system compromise.

Affected Products

  • Qdrant versions prior to v1.9.0
  • Qdrant v1.9.0-dev development builds
  • Systems running Qdrant with snapshot recovery functionality enabled

Discovery Timeline

  • 2024-06-03 - CVE-2024-3829 published to NVD
  • 2025-10-15 - Last updated in NVD database

Technical Details for CVE-2024-3829

Vulnerability Analysis

The vulnerability resides in Qdrant's snapshot recovery mechanism, which fails to properly validate or sanitize symbolic links within snapshot archives. When a user or automated process restores a snapshot, the system processes the archive contents without checking whether any files are actually symlinks pointing outside the intended directory structure.

This lack of validation creates two distinct attack scenarios. For arbitrary file read, an attacker can craft a snapshot containing a symlink that points to a target file (e.g., /etc/passwd, configuration files, or database credentials). When the snapshot is processed, the symlink is followed, and the contents of the target file become accessible through the normal snapshot data retrieval mechanisms.

For arbitrary file write, the attacker includes both a symlink and a corresponding payload file in the snapshot's directory structure. During recovery, the symlink is created first, and subsequently, the payload file is written to the location the symlink points to, effectively allowing the attacker to write arbitrary content to any file the Qdrant process has permissions to modify.

Root Cause

The root cause is classified under CWE-59 (Improper Link Resolution Before File Access). The snapshot recovery code does not verify whether entries in the snapshot archive are regular files or symbolic links before processing them. This improper handling of symlinks allows path traversal and arbitrary file system access outside the intended snapshot directory boundaries.

Attack Vector

The attack can be executed remotely over the network without authentication. An attacker needs the ability to upload or trigger the recovery of a malicious snapshot file. The attack flow involves:

  1. Creating a crafted snapshot archive containing malicious symlinks
  2. Uploading the snapshot to the target Qdrant instance or triggering recovery of an externally-hosted malicious snapshot
  3. Upon snapshot recovery, the symlinks are processed, allowing file read or write operations
  4. Exfiltrating sensitive data or writing malicious content to achieve further compromise

The vulnerability is particularly dangerous because it requires no user interaction and can be exploited with low attack complexity once an attacker can influence the snapshot recovery process.

Detection Methods for CVE-2024-3829

Indicators of Compromise

  • Unexpected symbolic links appearing in Qdrant's storage or snapshot directories
  • Unusual file access patterns originating from the Qdrant process, especially to sensitive system files
  • Modified system files or configuration files with timestamps correlating to snapshot recovery operations
  • Log entries showing snapshot recovery operations from untrusted or external sources

Detection Strategies

  • Monitor file system operations from the Qdrant process for symlink creation or access to files outside expected directories
  • Implement file integrity monitoring on critical system files to detect unauthorized modifications
  • Audit snapshot recovery logs for suspicious activity, particularly recoveries from unknown sources
  • Deploy application-level monitoring to track snapshot upload and recovery API calls

Monitoring Recommendations

  • Enable verbose logging for Qdrant snapshot operations and forward logs to a SIEM for analysis
  • Set up alerts for file access attempts outside the Qdrant data directory by the Qdrant process
  • Monitor network traffic for large data exfiltration patterns that may indicate sensitive file theft
  • Regularly audit the contents of snapshot directories for unexpected symlinks or file structures

How to Mitigate CVE-2024-3829

Immediate Actions Required

  • Upgrade Qdrant to version v1.9.0 or later immediately
  • Restrict snapshot upload and recovery functionality to trusted administrators only
  • Audit existing snapshots for any suspicious symlinks or unexpected file structures
  • Review access logs for any indication of exploitation prior to patching

Patch Information

The vulnerability has been fixed in Qdrant version v1.9.0. The fix is documented in the GitHub commit ee7a31ec3459a6a4219200234615c1817ab82260. Organizations should upgrade to v1.9.0 or later as soon as possible. Additional details about the vulnerability discovery can be found at the Huntr bounty listing.

Workarounds

  • Disable snapshot recovery functionality if not required for operations until the patch can be applied
  • Implement network segmentation to restrict access to Qdrant's snapshot management APIs
  • Run Qdrant with minimal file system permissions to limit the impact of potential exploitation
  • Use a read-only file system for sensitive directories that should not be modified by the Qdrant process
bash
# Configuration example: Restrict Qdrant process permissions
# Run Qdrant with a dedicated user with minimal privileges
useradd -r -s /bin/false qdrant-service
chown -R qdrant-service:qdrant-service /opt/qdrant/data

# Restrict write access to only necessary directories
chmod 755 /opt/qdrant
chmod 700 /opt/qdrant/data
chmod 700 /opt/qdrant/snapshots

# Use systemd to enforce additional restrictions
# Add to qdrant.service:
# [Service]
# ProtectSystem=strict
# ProtectHome=true
# NoNewPrivileges=true
# ReadWritePaths=/opt/qdrant/data /opt/qdrant/snapshots

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechQdrant

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.30%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-59

  • NVD-CWE-noinfo
  • Technical References
  • Huntr Bounty Listing
  • Vendor Resources
  • GitHub Commit Details
  • Related CVEs
  • CVE-2026-25628: Qdrant Path Traversal Vulnerability

  • CVE-2024-2221: Qdrant Path Traversal Vulnerability

  • CVE-2024-3078: Qdrant Path Traversal 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