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

CVE-2026-25628: Qdrant Path Traversal Vulnerability

CVE-2026-25628 is a path traversal vulnerability in Qdrant vector database that allows attackers to append to arbitrary files via the /logger endpoint. This article covers the technical details, affected versions, and mitigation.

Published: February 13, 2026

CVE-2026-25628 Overview

CVE-2026-25628 is a path traversal vulnerability in Qdrant, a popular vector similarity search engine and vector database. The vulnerability exists in versions 1.9.3 through 1.15.x and allows attackers with minimal (read-only) access to append arbitrary content to files on the target system by exploiting the /logger endpoint with an attacker-controlled on_disk.log_file path parameter.

This vulnerability is classified as CWE-73 (External Control of File Name or Path), which occurs when an application uses external input to construct a pathname that should be within a restricted directory, but fails to properly neutralize elements that can cause the pathname to resolve to a location outside of that restricted directory.

Critical Impact

Attackers with minimal privileges can append data to arbitrary files on the server, potentially leading to configuration tampering, log poisoning, or establishing persistence mechanisms through file manipulation.

Affected Products

  • Qdrant versions 1.9.3 through 1.15.x
  • Qdrant vector database deployments with the /logger API endpoint accessible
  • Systems running vulnerable Qdrant instances with network-exposed service APIs

Discovery Timeline

  • February 6, 2026 - CVE-2026-25628 published to NVD
  • February 6, 2026 - Last updated in NVD database

Technical Details for CVE-2026-25628

Vulnerability Analysis

The vulnerability resides in Qdrant's logger configuration API, specifically in the /logger endpoint implementation within src/actix/api/service_api.rs. The endpoint originally lacked proper access control validation and path restrictions, allowing users with only read-only access to specify arbitrary file paths through the on_disk.log_file configuration parameter.

When a malicious request is processed, the application opens the specified file path in append mode without validating whether the path is within an allowed directory or whether the user has appropriate write permissions. This enables attackers to write log data to any file accessible to the Qdrant process on the filesystem.

The exploitation requires network access to the Qdrant API and only minimal authentication privileges (read-only access), making it relatively easy to exploit in environments where Qdrant is exposed to untrusted networks or users.

Root Cause

The root cause is insufficient access control on the /logger API endpoints combined with a lack of path validation for the on_disk.log_file parameter. The original implementation allowed any authenticated user to modify logger configuration including the log file destination, without verifying that:

  1. The user has appropriate write-level permissions
  2. The specified file path is within an allowed logging directory
  3. The path does not traverse outside of intended boundaries

Attack Vector

The attack is network-based and requires only low-privilege (read-only) authenticated access to the Qdrant API. An attacker can exploit this vulnerability by:

  1. Authenticating to the Qdrant instance with minimal read-only credentials
  2. Sending a POST request to the /logger endpoint with a crafted log_file path pointing to a sensitive system file
  3. The Qdrant service opens the specified file in append mode and writes log data to it
  4. The attacker can potentially corrupt configuration files, poison logs, or achieve code execution through file manipulation

The following patch shows the security fix implemented to restrict the /logger API:

rust
 }
 
 #[get("/logger")]
-async fn get_logger_config(handle: web::Data<tracing::LoggerHandle>) -> impl Responder {
+async fn get_logger_config(
+    ActixAccess(access): ActixAccess,
+    handle: web::Data<tracing::LoggerHandle>,
+) -> impl Responder {
     let timing = Instant::now();
-    let result = handle.get_config().await;
-    helpers::process_response(Ok(result), timing, None)
+
+    let future = async {
+        let _ = access.check_global_access(AccessRequirements::new())?;
+        let config = handle.get_config().await;
+        Ok(config)
+    };
+
+    helpers::process_response(future.await, timing, None)
 }
 
 #[post("/logger")]
 async fn update_logger_config(
+    ActixAccess(access): ActixAccess,
     handle: web::Data<tracing::LoggerHandle>,
-    config: web::Json<tracing::LoggerConfig>,
+    mut config: web::Json<tracing::LoggerConfig>,
 ) -> impl Responder {
     let timing = Instant::now();

Source: GitHub Qdrant Commit

Detection Methods for CVE-2026-25628

Indicators of Compromise

  • Unusual POST requests to the /logger endpoint from unexpected sources or users
  • Log file paths containing directory traversal sequences (../) or pointing to sensitive system files
  • Unexpected modifications to system configuration files or application logs
  • Authentication logs showing read-only users attempting to modify logger configurations

Detection Strategies

  • Monitor API access logs for requests to /logger endpoints with suspicious log_file parameters
  • Implement file integrity monitoring on critical system files to detect unauthorized modifications
  • Deploy network-based detection rules to identify requests containing path traversal patterns targeting the logger endpoint
  • Review Qdrant audit logs for configuration changes initiated by low-privilege users

Monitoring Recommendations

  • Enable detailed logging for all Qdrant API endpoints, particularly configuration-related APIs
  • Implement alerting on file system changes in sensitive directories where Qdrant has write access
  • Monitor for process behavior anomalies, such as the Qdrant process writing to unexpected file locations
  • Use SentinelOne's behavioral AI to detect abnormal file access patterns from the Qdrant service

How to Mitigate CVE-2026-25628

Immediate Actions Required

  • Upgrade Qdrant to version 1.16.0 or later immediately
  • Review access control configurations to ensure only trusted administrators can access the logger API
  • Audit recent API logs for any exploitation attempts targeting the /logger endpoint
  • Restrict network access to Qdrant's management APIs using firewall rules or network segmentation

Patch Information

The vulnerability is fixed in Qdrant version 1.16.0. The patch implements proper access control checks on the /logger endpoint and restricts the ability to specify log file paths via API requests. According to the fix, the log file can now only be specified in the configuration file, preventing runtime manipulation through the API.

For detailed patch information, refer to the GitHub Security Advisory GHSA-f632-vm87-2m2f and the security commit.

Workarounds

  • Restrict access to the /logger endpoint using a reverse proxy or API gateway with strict authentication requirements
  • Implement network-level access controls to limit which hosts can reach Qdrant's service APIs
  • Run Qdrant with minimal filesystem permissions to limit the impact of arbitrary file writes
  • Deploy Qdrant in a containerized environment with restricted filesystem access and read-only root filesystems where possible
bash
# Example: Restrict Qdrant API access with iptables
# Only allow localhost and trusted management hosts to access the API
iptables -A INPUT -p tcp --dport 6333 -s 127.0.0.1 -j ACCEPT
iptables -A INPUT -p tcp --dport 6333 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 6333 -j DROP

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

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-73
  • Technical References
  • GitHub Qdrant Code Snippet

  • GitHub Qdrant Commit Log

  • GitHub Security Advisory GHSA-f632-vm87-2m2f
  • Related CVEs
  • CVE-2024-3829: 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