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-2021-47755

CVE-2021-47755: Oliver Library Server Path Traversal Flaw

CVE-2021-47755 is a path traversal vulnerability in Oliver Library Server v5 that enables unauthenticated attackers to download arbitrary files. This article covers technical details, affected versions, and mitigation.

Published: January 23, 2026

CVE-2021-47755 Overview

CVE-2021-47755 is a path traversal vulnerability affecting Oliver Library Server v5. The vulnerability exists within the FileServlet endpoint, which fails to properly sanitize the fileName parameter before processing file download requests. This allows unauthenticated attackers to access arbitrary files on the server's filesystem by manipulating the input with directory traversal sequences such as ../.

Critical Impact

Unauthenticated attackers can download sensitive system files including configuration files, credentials, and other confidential data from servers running Oliver Library Server v5.

Affected Products

  • Oliver Library Server v5

Discovery Timeline

  • 2026-01-15 - CVE CVE-2021-47755 published to NVD
  • 2026-01-16 - Last updated in NVD database

Technical Details for CVE-2021-47755

Vulnerability Analysis

This vulnerability is classified as CWE-22 (Improper Limitation of a Pathname to a Restricted Directory), commonly known as path traversal or directory traversal. The FileServlet endpoint in Oliver Library Server v5 accepts a fileName parameter that is used to construct a file path for download operations. Due to insufficient input validation, the application does not properly sanitize or restrict directory traversal sequences in the user-supplied filename.

The network-accessible nature of this vulnerability combined with no authentication requirement significantly increases the risk exposure. An attacker can exploit this vulnerability remotely without any prior access to the system or valid credentials.

Root Cause

The root cause of this vulnerability lies in the improper validation of the fileName parameter within the FileServlet component. When a file download request is processed, the application directly uses the user-supplied filename to construct the target file path without filtering out directory traversal characters such as ../ or ..\. This allows an attacker to escape the intended download directory and access files anywhere on the server's filesystem where the web application has read permissions.

Attack Vector

The attack vector for CVE-2021-47755 is network-based, allowing remote exploitation without authentication. An attacker can craft malicious HTTP requests to the FileServlet endpoint, manipulating the fileName parameter to include path traversal sequences. By traversing up the directory structure and then specifying the target file path, attackers can download sensitive files such as /etc/passwd, application configuration files containing database credentials, or other sensitive data stored on the server.

The vulnerability can be exploited by sending crafted GET or POST requests to the vulnerable endpoint. Technical details and proof-of-concept information are available at Exploit-DB #50599.

Detection Methods for CVE-2021-47755

Indicators of Compromise

  • HTTP requests to FileServlet containing path traversal sequences such as ../, ..%2f, or ..%5c in the fileName parameter
  • Unusual file access patterns in web server logs showing requests for system files like /etc/passwd or Windows system files
  • Multiple rapid file download requests from a single source targeting various system paths
  • Web application logs showing errors related to file access outside the expected download directory

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing directory traversal patterns
  • Configure intrusion detection systems to alert on HTTP requests with encoded path traversal sequences (%2e%2e%2f, %252e%252e%252f)
  • Monitor web server access logs for unusual patterns in FileServlet requests
  • Deploy file integrity monitoring on sensitive system files to detect unauthorized access attempts

Monitoring Recommendations

  • Enable detailed logging for the FileServlet endpoint to capture all file download requests with full parameter details
  • Set up real-time alerting for any web requests containing path traversal indicators
  • Monitor for abnormal outbound data transfer volumes that may indicate mass file exfiltration
  • Implement network traffic analysis to detect large file transfers from the server to external destinations

How to Mitigate CVE-2021-47755

Immediate Actions Required

  • Restrict network access to the Oliver Library Server to trusted networks or IP addresses only
  • Implement web application firewall rules to block path traversal patterns in HTTP requests
  • Review and remove any unnecessary publicly accessible file download endpoints
  • Audit server logs for evidence of exploitation attempts targeting the FileServlet endpoint

Patch Information

Organizations should consult Softlink Product Overview for official patch and upgrade information for Oliver Library Server. Contact the vendor directly to obtain the latest security updates that address this vulnerability.

Workarounds

  • Deploy a reverse proxy or web application firewall in front of the Oliver Library Server to filter malicious requests
  • Implement network segmentation to limit access to the vulnerable server from untrusted networks
  • Configure file system permissions to restrict the web application's read access to only necessary directories
  • Consider taking the FileServlet endpoint offline if file download functionality is not business-critical
bash
# Example WAF rule to block path traversal attempts
# Add to ModSecurity configuration
SecRule REQUEST_URI|ARGS "@rx (\.\./|\.\.\\)" \
    "id:1001,phase:1,deny,status:403,msg:'Path Traversal Attempt Detected'"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechOliver Library Server

  • SeverityHIGH

  • CVSS Score8.7

  • EPSS Probability0.17%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:N/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-22
  • Technical References
  • Exploit-DB #50599

  • Softlink Product Overview
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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