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

CVE-2024-10833: DB-GPT Path Traversal Vulnerability

CVE-2024-10833 is a path traversal vulnerability in DB-GPT 0.6.0 that enables arbitrary file writes via the knowledge API. Attackers can exploit absolute path traversal to write files anywhere on the server.

Published: April 15, 2026

CVE-2024-10833 Overview

CVE-2024-10833 is a critical arbitrary file write vulnerability affecting eosphoros-ai/db-gpt version 0.6.0. The vulnerability exists in the knowledge API endpoint used for uploading files, which is susceptible to absolute path traversal attacks. This flaw allows unauthenticated attackers to write files to arbitrary locations on the target server by manipulating the doc_file.filename parameter, which is user-controllable.

Critical Impact

Attackers can write arbitrary files to any location on the server, potentially leading to remote code execution, system compromise, or complete denial of service.

Affected Products

  • DB-GPT version 0.6.0

Discovery Timeline

  • 2025-03-20 - CVE-2024-10833 published to NVD
  • 2025-10-15 - Last updated in NVD database

Technical Details for CVE-2024-10833

Vulnerability Analysis

This path traversal vulnerability (CWE-36) affects the knowledge file upload functionality in DB-GPT. The root cause is insufficient validation of user-supplied file names during the upload process. When a user uploads a file through the knowledge API, the application fails to sanitize or validate the doc_file.filename parameter, allowing attackers to construct absolute file paths that escape the intended upload directory.

The vulnerability can be exploited remotely without authentication, and successful exploitation could result in high impact to both system integrity and availability. An attacker could overwrite critical system files, inject malicious scripts, or plant web shells for persistent access.

Root Cause

The vulnerability stems from improper handling of the doc_file.filename parameter in the knowledge upload endpoint. The application accepts user-controlled input for the filename without proper sanitization, failing to strip or reject absolute path components. This allows attackers to bypass directory restrictions and write files to arbitrary locations on the filesystem using path traversal sequences or absolute paths.

Attack Vector

The attack is network-based and can be executed without any user interaction or authentication. An attacker crafts a malicious HTTP request to the knowledge upload endpoint, specifying an absolute path in the filename parameter. For example, instead of a simple filename like document.txt, an attacker could supply /etc/cron.d/malicious_job or /var/www/html/shell.php to write files to sensitive locations.

The vulnerability can be exploited by sending a crafted multipart form request to the knowledge upload API where the filename field contains an absolute path instead of a relative filename. This allows the attacker to specify the exact destination on the server's filesystem where the uploaded content will be written. Technical details and proof-of-concept information are available in the Huntr Bounty Report.

Detection Methods for CVE-2024-10833

Indicators of Compromise

  • Unexpected files appearing in system directories such as /etc/, /var/www/, or other sensitive locations
  • Web server logs showing upload requests with absolute paths or path traversal sequences in filename parameters
  • New or modified files with timestamps correlating to suspicious knowledge API upload requests
  • Presence of web shells or unauthorized scripts in web-accessible directories

Detection Strategies

  • Monitor HTTP requests to the knowledge API endpoint for filename parameters containing absolute paths or ../ traversal sequences
  • Implement file integrity monitoring on critical system directories to detect unauthorized file creation or modification
  • Deploy web application firewall (WAF) rules to block requests containing path traversal patterns in multipart form data
  • Audit access logs for unusual patterns targeting the knowledge upload functionality

Monitoring Recommendations

  • Enable detailed logging for all file upload operations in DB-GPT
  • Configure alerts for file write operations outside the designated upload directory
  • Monitor for creation of executable files (.php, .py, .sh) in unexpected locations
  • Implement real-time detection for path traversal patterns in HTTP request parameters

How to Mitigate CVE-2024-10833

Immediate Actions Required

  • Restrict network access to DB-GPT instances, limiting exposure to trusted networks only
  • Disable the knowledge upload functionality if not critical to operations until a patch is available
  • Implement strict input validation at the web server or reverse proxy level to reject requests with absolute paths
  • Apply filesystem permissions to limit the DB-GPT process's write capabilities to designated directories only

Patch Information

At the time of publication, users should monitor the official DB-GPT repository for security updates addressing this vulnerability. Organizations running DB-GPT version 0.6.0 should upgrade to the latest version as soon as a patched release becomes available.

Workarounds

  • Deploy a reverse proxy with strict input validation rules that reject filename parameters containing / or \ characters
  • Run DB-GPT in a containerized environment with limited filesystem write access
  • Implement mandatory file extension whitelisting to restrict uploads to specific safe file types
  • Configure the application to run with minimal filesystem permissions using a dedicated low-privilege service account
bash
# Example: Restrict filesystem permissions for DB-GPT service
# Create dedicated user with limited permissions
useradd -r -s /bin/false dbgpt-service

# Limit write access to upload directory only
chown -R dbgpt-service:dbgpt-service /opt/dbgpt/uploads
chmod 755 /opt/dbgpt/uploads

# Run service with restricted permissions
systemctl edit dbgpt --force
# Add: User=dbgpt-service
# Add: ReadWritePaths=/opt/dbgpt/uploads

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechDbgpt

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.22%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-36
  • Technical References
  • Huntr Bounty Report
  • Related CVEs
  • CVE-2025-6772: Dbgpt Db-gpt Path Traversal Vulnerability

  • CVE-2025-0452: DB-GPT Path Traversal Vulnerability

  • CVE-2024-10834: DB-GPT Path Traversal Vulnerability

  • CVE-2024-10831: Dbgpt Db-gpt 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