CVE-2025-29192
BaseFortify
Publication date: 2025-10-06
Last updated on: 2025-10-07
Assigner: MITRE
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| flowiseai | flowise | to 3.0.5 (exc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-79 | The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability is a stored Cross-Site Scripting (XSS) issue in Flowise before version 3.0.5. It occurs because the chat log allows HTML tags like <form> and <input>, enabling an attacker to inject malicious HTML code into the logs via crafted prompts. When an admin views the chat log and interacts with the injected content (such as clicking an image input), malicious JavaScript can execute, potentially stealing sensitive information like stored passwords. [1]
How can this vulnerability impact me? :
Exploiting this vulnerability can allow an attacker to hijack an admin account in the chatbot application, gaining unauthorized access to sensitive chat logs and API keys. The attack requires the admin to click on the injected malicious content, leading to credential theft or other malicious actions. While no privileges are needed to perform the attack, it has high confidentiality impact but does not affect integrity or availability. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by inspecting the chat logs for injected HTML form and input elements, specifically looking for suspicious <form> and <input type="image"> tags with a formaction attribute containing JavaScript code. Since the attack requires an admin to view the chat log, reviewing logs for such injected HTML is key. There are no specific commands provided, but you can use text search tools like grep to scan log files for patterns such as '<form>' or 'formaction="javascript:' to identify potential exploit attempts. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting admin access to the chat logs to trusted users only, educating admins not to click on suspicious images or forms within chat logs, and monitoring for unusual activity. Since no patched versions are available yet, consider implementing input sanitization or filtering to block HTML tags like <form> and <input> in chat logs. Additionally, applying network-level protections such as web application firewalls (WAF) to detect and block malicious payloads may help reduce risk. [1]