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

CVE-2025-39526: Hotel Booking Plugin LFI Vulnerability

CVE-2025-39526 is a PHP local file inclusion vulnerability in the Hotel Booking nd-booking plugin that allows attackers to include malicious files. This article covers technical details, affected versions up to 3.6, and mitigation.

Updated: May 19, 2026

CVE-2025-39526 Overview

CVE-2025-39526 is a PHP Local File Inclusion (LFI) vulnerability in the nicdark Hotel Booking WordPress plugin (nd-booking). The flaw stems from Improper Control of Filename for Include/Require Statement in PHP Program [CWE-98]. Attackers can manipulate file path parameters passed to PHP include or require statements to load arbitrary local files from the server. The vulnerability affects all versions of Hotel Booking up to and including 3.6. Successful exploitation impacts confidentiality, integrity, and availability of the underlying WordPress installation.

Critical Impact

Unauthenticated attackers can include arbitrary local PHP files, potentially leading to source code disclosure, sensitive data exposure, and remote code execution when combined with file upload primitives.

Affected Products

  • nicdark Hotel Booking (nd-booking) WordPress plugin versions through 3.6
  • WordPress sites with the nd-booking plugin installed and activated
  • Hosting environments running the vulnerable plugin alongside writable upload directories

Discovery Timeline

  • 2025-04-17 - CVE-2025-39526 published to the National Vulnerability Database
  • 2026-04-23 - Last updated in NVD database

Technical Details for CVE-2025-39526

Vulnerability Analysis

The vulnerability resides in the nd-booking plugin's handling of user-supplied input passed to PHP include, require, include_once, or require_once statements. The plugin fails to validate or sanitize filename parameters before passing them to file inclusion functions. An attacker can supply path traversal sequences such as ../ to escape the intended directory and reference arbitrary .php files on the filesystem.

The issue is classified under CWE-98, which covers improper control of filenames used in include or require statements. Although the CWE title references Remote File Inclusion, this instance is constrained to Local File Inclusion based on the advisory. Exploitation requires no authentication and can be triggered over the network. The current EPSS data places this vulnerability in the upper third of likely-exploited issues tracked.

Root Cause

The root cause is missing input validation on a filename parameter that flows directly into a PHP file inclusion sink. The plugin trusts user-controlled HTTP request data and concatenates it into an include path without enforcing an allow-list of permitted files or canonicalizing the resulting path. PHP's file inclusion functions execute any PHP code found in the included file, so any attacker-controlled path resolution becomes a code execution primitive.

Attack Vector

An unauthenticated remote attacker sends a crafted HTTP request to a vulnerable endpoint exposed by the nd-booking plugin. The request manipulates the vulnerable filename parameter using directory traversal sequences to point at sensitive files such as wp-config.php, log files, or session storage. When combined with techniques such as log poisoning or uploading a benign-looking file that contains PHP, the LFI escalates to arbitrary code execution under the web server user. Refer to the Patchstack Vulnerability Report for additional technical context.

Detection Methods for CVE-2025-39526

Indicators of Compromise

  • HTTP requests to nd-booking plugin endpoints containing path traversal sequences such as ../, ..%2f, or encoded variants in query string parameters
  • Web server access logs showing requests that reference wp-config.php, /etc/passwd, or PHP session files via plugin parameters
  • Unexpected PHP files appearing in plugin or upload directories after suspicious inbound traffic
  • Outbound connections from the web server process to attacker-controlled infrastructure following plugin requests

Detection Strategies

  • Inspect web access logs for requests targeting /wp-content/plugins/nd-booking/ paths with suspicious file parameters
  • Deploy WAF rules that flag directory traversal patterns in HTTP parameters destined for WordPress plugin endpoints
  • Monitor PHP error logs for include/require warnings referencing unexpected file paths
  • Establish file integrity monitoring on the WordPress installation root and wp-content/uploads directory

Monitoring Recommendations

  • Alert on any read access to wp-config.php originating from the web server process outside of normal application startup
  • Correlate web request anomalies with new outbound network connections from the PHP-FPM or Apache worker process
  • Track plugin version inventory across WordPress estates and flag any host running nd-booking 3.6 or earlier

How to Mitigate CVE-2025-39526

Immediate Actions Required

  • Identify all WordPress sites running the nd-booking plugin and confirm the installed version
  • Deactivate and remove the Hotel Booking plugin on any site where a patched release is not available
  • Restrict access to WordPress administrative and plugin endpoints behind a WAF or IP allow-list while remediation is in progress
  • Rotate any credentials, API keys, and database secrets stored in wp-config.php if exploitation is suspected

Patch Information

No fixed version is identified in the available advisory data. The vulnerability affects Hotel Booking versions through 3.6. Administrators should consult the Patchstack Vulnerability Report for the latest vendor remediation status and apply any subsequently published patch immediately.

Workarounds

  • Remove or disable the nd-booking plugin until a verified patch is available
  • Configure open_basedir in PHP to restrict file inclusion to the WordPress document root and required directories
  • Set allow_url_include = Off and allow_url_fopen = Off in php.ini to limit inclusion primitives
  • Apply virtual patching through a WAF rule that blocks path traversal sequences in requests to nd-booking endpoints
bash
# Example php.ini hardening to limit file inclusion abuse
allow_url_include = Off
allow_url_fopen = Off
open_basedir = "/var/www/html:/tmp"
disable_functions = "system,exec,shell_exec,passthru,proc_open,popen"

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

  • Vulnerability Details
  • TypePath Traversal

  • Vendor/TechNicdark Hotel Booking

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.55%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-98
  • Technical References
  • Patchstack Vulnerability Report
  • Latest CVEs
  • CVE-2026-43328: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-43329: Linux Kernel Netfilter DoS Vulnerability

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

  • CVE-2026-43331: Linux Kernel DOS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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