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-2025-63891

CVE-2025-63891: Book Store System Info Disclosure Flaw

CVE-2025-63891 is an information disclosure vulnerability in Simple Online Book Store System that exposes database contents via accessible backup files. This post covers the technical details, attack vectors, and mitigation.

Published: April 21, 2026

CVE-2025-63891 Overview

CVE-2025-63891 is an Information Disclosure vulnerability affecting the SourceCodester Simple Online Book Store System. The vulnerability exists due to a web-accessible backup file that allows remote unauthenticated attackers to disclose full database contents, including schema information and credential hashes, via an unauthenticated HTTP GET request to /obs/database/obs_db.sql.

This vulnerability represents a critical security misconfiguration where sensitive database backup files are exposed through the web server without any authentication or access controls. Successful exploitation provides attackers with complete visibility into the application's database structure and stored credentials, potentially enabling further attacks such as credential cracking and unauthorized system access.

Critical Impact

Unauthenticated attackers can retrieve complete database backups containing sensitive user credentials, schema information, and application data without any authentication.

Affected Products

  • SourceCodester Simple Online Book Store System version 1.0
  • oretnom23 simple_online_book_store_system

Discovery Timeline

  • 2025-11-14 - CVE-2025-63891 published to NVD
  • 2025-11-19 - Last updated in NVD database

Technical Details for CVE-2025-63891

Vulnerability Analysis

This vulnerability falls under CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The Simple Online Book Store System stores database backup files in a publicly accessible directory within the web root. The backup file located at /obs/database/obs_db.sql contains a complete SQL dump of the application database, which includes table structures, user account information, and hashed passwords.

The exploitation mechanism is straightforward: an attacker simply needs to craft an HTTP GET request to the predictable backup file path. No authentication tokens, session cookies, or special headers are required. The web server serves the SQL file as a downloadable resource, exposing the entire database contents to anyone who knows or discovers the file path.

The network-accessible nature of this vulnerability means any attacker with HTTP access to the application can exploit it. The low attack complexity combined with no required privileges or user interaction makes this vulnerability particularly dangerous for internet-facing deployments.

Root Cause

The root cause of this vulnerability is improper access control configuration on sensitive backup files. The application stores database backup files within the web-accessible directory structure without implementing any authentication checks or access restrictions. This design flaw violates the principle of least privilege and exposes highly sensitive information to unauthorized users.

Common contributing factors to this type of vulnerability include:

  • Storing backup files within the document root instead of a protected location
  • Missing .htaccess or equivalent web server access controls
  • Absence of file extension restrictions for sensitive file types
  • Failure to implement authentication middleware for sensitive directories

Attack Vector

The attack vector for CVE-2025-63891 is network-based and requires no authentication. An attacker can exploit this vulnerability by performing the following:

  1. Discovery Phase: The attacker identifies the target application as SourceCodester Simple Online Book Store System through fingerprinting or reconnaissance
  2. Exploitation: The attacker sends an unauthenticated HTTP GET request to the predictable path /obs/database/obs_db.sql
  3. Data Extraction: The web server returns the complete SQL database backup file
  4. Post-Exploitation: The attacker extracts credential hashes from the dump and attempts offline password cracking, or uses the schema information to craft additional attacks such as SQL injection

The attack can be executed using any HTTP client, including web browsers or command-line tools like curl or wget. The predictable file naming convention makes this vulnerability trivially discoverable through manual testing or automated scanning.

Detection Methods for CVE-2025-63891

Indicators of Compromise

  • HTTP GET requests targeting /obs/database/obs_db.sql or similar database backup paths
  • Unusual access patterns to the /obs/database/ directory from external IP addresses
  • Web server logs showing successful (HTTP 200) responses for .sql file requests
  • Large outbound data transfers associated with database file downloads

Detection Strategies

  • Implement web application firewall (WAF) rules to block requests for .sql file extensions in web-accessible directories
  • Configure web server access logging and monitor for requests to /obs/database/ paths
  • Deploy file integrity monitoring on backup directories to detect unauthorized access or modifications
  • Use network monitoring to detect large file transfers from backup file paths

Monitoring Recommendations

  • Enable detailed access logging on the web server to capture all requests to the application
  • Set up alerts for any HTTP requests matching patterns like *.sql, *.bak, or *.dump in web directories
  • Monitor for reconnaissance activity such as directory enumeration attempts against /obs/ paths
  • Review authentication logs for post-exploitation activity following potential database credential compromise

How to Mitigate CVE-2025-63891

Immediate Actions Required

  • Remove or relocate the obs_db.sql backup file from the web-accessible /obs/database/ directory immediately
  • Block access to the /obs/database/ directory using web server configuration rules
  • Rotate all credentials stored in the potentially exposed database backup
  • Review web server access logs for evidence of prior exploitation

Patch Information

No official vendor patch has been identified for this vulnerability. Organizations should implement the workarounds and mitigations described below to protect against exploitation. Additional technical details may be available at the GitHub CVE-2025-63891 Details page.

For reference, the affected product information is available on SourceCodester.

Workarounds

  • Move all database backup files outside of the web document root to a location not accessible via HTTP
  • Configure web server rules (such as .htaccess for Apache) to deny access to .sql files and backup directories
  • Implement authentication requirements for any administrative directories that must remain web-accessible
  • Consider using application-level access controls or IP whitelisting for sensitive file paths
bash
# Apache .htaccess configuration to block SQL file access
<FilesMatch "\.(sql|bak|dump)$">
    Require all denied
</FilesMatch>

# Block access to database directory
<Directory "/var/www/html/obs/database">
    Require all denied
</Directory>

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechOretnom23 Simple Online Book Store System

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.06%

  • 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-200
  • Technical References
  • Simple Website Resource

  • SourceCodester Overview

  • GitHub CVE-2025-63891 Details
  • Latest CVEs
  • CVE-2026-8468: Elixir Plug Library DoS Vulnerability

  • CVE-2026-8295: simdjson Information Disclosure Vulnerability

  • CVE-2025-68421: Comarch ERP Optima Auth Bypass Vulnerability

  • CVE-2025-68420: Comarch ERP Optima Privilege Escalation
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