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

CVE-2025-5282: WP Travel Engine Auth Bypass Vulnerability

CVE-2025-5282 is an authentication bypass flaw in WP Travel Engine plugin for WordPress that allows unauthenticated attackers to delete arbitrary posts. This article covers technical details, affected versions, and mitigations.

Published: May 4, 2026

CVE-2025-5282 Overview

CVE-2025-5282 is a missing authorization vulnerability in the WP Travel Engine – Tour Booking Plugin – Tour Operator Software plugin for WordPress. The flaw exists in the delete_package() function across all versions up to and including 6.5.1. The function lacks a capability check, allowing unauthenticated attackers to send crafted requests that delete arbitrary posts on affected sites. The vulnerability is classified under CWE-862: Missing Authorization and impacts site integrity by enabling destructive actions without authentication.

Critical Impact

Unauthenticated remote attackers can delete arbitrary WordPress posts, causing data loss and potential site disruption on installations running WP Travel Engine ≤ 6.5.1.

Affected Products

  • WP Travel Engine plugin for WordPress, versions up to and including 6.5.1
  • WordPress sites using the Tour Booking / Tour Operator Software plugin distributed by wptravelengine
  • Fixed version: WP Travel Engine 6.5.2

Discovery Timeline

  • 2025-06-13 - CVE-2025-5282 published to NVD
  • 2025-07-10 - Last updated in NVD database

Technical Details for CVE-2025-5282

Vulnerability Analysis

The vulnerability resides in the delete_package() function within the plugin's REST API V2 Trip controller, located at includes/classes/Core/Controllers/RestAPI/V2/Trip.php. The function processes deletion requests but does not validate whether the requesting user holds the capabilities required to delete posts. Because the REST endpoint accepts unauthenticated requests, any remote actor able to reach the WordPress site can trigger post deletion.

The issue maps to CWE-862 (Missing Authorization). Authorization checks such as current_user_can() or a permission_callback enforcing a privileged capability were absent from the route handler.

Root Cause

The root cause is the absence of a capability check on the REST route that invokes delete_package(). WordPress REST API routes require an explicit permission_callback to gate access. When this callback returns true unconditionally or is missing, the endpoint becomes publicly callable. In this case, the deletion handler executed wp_delete_post() style logic against post IDs supplied by the request without verifying caller privileges.

Attack Vector

An attacker sends an HTTP request to the plugin's REST endpoint specifying a target post ID. No authentication header, nonce, or session cookie is required. The server processes the deletion against the supplied identifier, removing the corresponding post from the database. Repeating the request with different IDs allows bulk destruction of content. EPSS data places exploitation probability at 0.382% (59.55 percentile) as of the most recent scoring.

The vulnerability mechanism is documented in the Wordfence Vulnerability Report and the upstream fix can be reviewed in the WordPress Plugin Changeset.

Detection Methods for CVE-2025-5282

Indicators of Compromise

  • Unexpected HTTP requests to WP Travel Engine REST routes under /wp-json/ referencing trip or package deletion handlers from unauthenticated sources.
  • WordPress posts (trip packages, pages, or other post types) missing without a corresponding administrator action in audit logs.
  • Spikes in DELETE or POST requests to plugin endpoints originating from a single IP or distributed scanners.

Detection Strategies

  • Review web server access logs for requests targeting the plugin's REST V2 Trip controller without authenticated session cookies or application passwords.
  • Compare current post counts and IDs against recent backups to identify deletions that lack a matching admin action in the WordPress activity log.
  • Deploy WordPress-specific WAF rules that flag REST API calls invoking deletion handlers from unauthenticated clients.

Monitoring Recommendations

  • Enable a WordPress activity logging plugin to record wp_trash_post and wp_delete_post events with originating user and IP.
  • Forward web server and WordPress audit logs to a SIEM and alert on high-volume post deletions or REST calls returning HTTP 200 against trip endpoints.
  • Monitor plugin version inventory across managed sites to confirm rapid patch adoption.

How to Mitigate CVE-2025-5282

Immediate Actions Required

  • Update the WP Travel Engine plugin to version 6.5.2 or later on every WordPress installation.
  • Audit existing posts and restore any that were deleted without authorization from a clean backup.
  • Restrict access to /wp-json/ REST endpoints at the WAF or reverse proxy where unauthenticated public access is not required.

Patch Information

The vendor addressed the issue in WP Travel Engine 6.5.2 by adding capability validation to the affected REST route. The fix is documented in the WordPress Plugin Changeset 3305447, which modifies Trip.php to enforce authorization before invoking delete_package().

Workarounds

  • If patching is delayed, disable the WP Travel Engine plugin until the upgrade can be applied.
  • Block external access to the plugin's REST routes at the web application firewall, allowing only authenticated administrative IPs.
  • Apply least-privilege backup and recovery policies so destroyed content can be restored quickly.
bash
# Example: block unauthenticated access to the vulnerable REST namespace via nginx
location ~* /wp-json/wp-travel-engine/ {
    if ($http_cookie !~* "wordpress_logged_in_") {
        return 403;
    }
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechWp Travel Engine

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.38%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-862
  • Technical References
  • Wordfence Vulnerability Report
  • Vendor Resources
  • WordPress Plugin Changeset
  • Related CVEs
  • CVE-2026-2437: WP Travel Engine Plugin XSS Vulnerability

  • CVE-2025-7526: WP Travel Engine Path Traversal Flaw

  • CVE-2025-7634: WP Travel Engine Plugin RCE Vulnerability

  • CVE-2025-30870: WP Travel Engine Path Traversal Flaw
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