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
    • 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-2020-24571

CVE-2020-24571: NexusDB Path Traversal Vulnerability

CVE-2020-24571 is a path traversal vulnerability in NexusDB before version 4.50.23 that enables unauthorized file access through directory traversal. This article covers technical details, affected versions, and mitigation.

Published: March 4, 2026

CVE-2020-24571 Overview

CVE-2020-24571 is a directory traversal vulnerability affecting NexusQA NexusDB before version 4.50.23. This vulnerability allows remote attackers to read arbitrary files from the server by exploiting improper input validation in file path handling. By using ../ sequences in requests, an attacker can traverse outside the intended directory structure and access sensitive files on the system.

Critical Impact

Remote attackers can read arbitrary files from affected NexusDB servers without authentication, potentially exposing sensitive configuration files, database contents, and system credentials.

Affected Products

  • NexusDB versions prior to 4.50.23
  • NexusQA NexusDB database server installations

Discovery Timeline

  • 2020-08-21 - CVE-2020-24571 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-24571

Vulnerability Analysis

This directory traversal vulnerability (CWE-22) exists in NexusDB's file handling mechanisms. The vulnerability occurs when the application fails to properly sanitize user-supplied input containing path traversal sequences. When processing file requests, NexusDB does not adequately validate or normalize file paths, allowing attackers to escape the web root or designated directories.

The network-accessible nature of this vulnerability means attackers can exploit it remotely without requiring authentication or user interaction. The impact is primarily focused on confidentiality, as attackers can read files but cannot modify or delete them through this specific vulnerability.

Root Cause

The root cause of CVE-2020-24571 lies in insufficient input validation within NexusDB's file access routines. The application fails to properly sanitize file path parameters, allowing directory traversal sequences such as ../ to be processed. This enables path manipulation that breaks out of the intended directory context.

Proper path canonicalization and validation against a whitelist of allowed directories were not implemented, enabling this classic path traversal attack pattern.

Attack Vector

The attack vector for this vulnerability is network-based. An attacker can craft malicious HTTP requests containing ../ sequences in file path parameters to traverse the directory structure. By chaining multiple traversal sequences (e.g., ../../../etc/passwd on Unix systems or ..\..\..\windows\win.ini on Windows), attackers can access sensitive system files outside the application's intended directory scope.

The exploitation requires no privileges or user interaction, making it trivial to exploit once the vulnerable service is identified. The attacker needs only network access to the NexusDB server to execute this attack.

Detection Methods for CVE-2020-24571

Indicators of Compromise

  • HTTP requests containing ../ or ..\\ sequences in URL paths or parameters targeting NexusDB services
  • Unusual file access patterns in NexusDB server logs, particularly requests for system files like /etc/passwd, win.ini, or configuration files
  • Network traffic showing repeated path traversal attempts against NexusDB endpoints
  • Access logs indicating successful retrieval of files outside the web root directory

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing path traversal patterns (../, ..\\, URL-encoded variants like %2e%2e%2f)
  • Configure intrusion detection systems (IDS) to alert on path traversal signatures targeting NexusDB server ports
  • Deploy SentinelOne Singularity Platform for endpoint protection with behavioral analysis to detect anomalous file access patterns
  • Monitor NexusDB application logs for requests containing directory traversal sequences

Monitoring Recommendations

  • Enable verbose logging on NexusDB servers and forward logs to a SIEM for centralized analysis
  • Implement file integrity monitoring (FIM) on sensitive system files to detect unauthorized read access
  • Configure alerts for network traffic anomalies targeting NexusDB services, particularly those containing encoded path traversal patterns
  • Use SentinelOne's threat intelligence feeds to identify known exploitation attempts against this vulnerability

How to Mitigate CVE-2020-24571

Immediate Actions Required

  • Upgrade NexusDB to version 4.50.23 or later immediately to address this vulnerability
  • Restrict network access to NexusDB servers using firewall rules, limiting connections to trusted IP addresses only
  • Implement a web application firewall (WAF) with rules to block path traversal attempts
  • Review access logs for signs of prior exploitation attempts and investigate any suspicious activity

Patch Information

NexusDB has released a fix in version 4.50.23 that addresses this directory traversal vulnerability. Organizations should upgrade to this version or later to remediate CVE-2020-24571. For detailed information about the fix, refer to the NexusDB Bug Report #2371.

Workarounds

  • Deploy a reverse proxy or WAF in front of NexusDB to filter malicious requests containing path traversal sequences
  • Implement network segmentation to isolate NexusDB servers from untrusted networks
  • Configure file system permissions to limit the service account's access to only necessary directories
  • If upgrading is not immediately possible, consider temporarily restricting external network access to the NexusDB service until the patch can be applied
bash
# Example WAF rule to block path traversal attempts (ModSecurity)
SecRule REQUEST_URI "../" "id:1001,phase:1,deny,status:403,msg:'Path Traversal Attempt Detected'"
SecRule REQUEST_URI "\.\./" "id:1002,phase:1,deny,status:403,msg:'Path Traversal Attempt Detected'"
SecRule ARGS "../" "id:1003,phase:2,deny,status:403,msg:'Path Traversal in Parameter'"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechNexusdb

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability92.42%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Vendor Resources
  • NexusDB Bug Report #2371
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs 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