CVE-2025-41102
BaseFortify
Publication date: 2025-11-11
Last updated on: 2025-11-17
Assigner: Spanish National Cybersecurity Institute, S.A. (INCIBE)
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| fairsketch | rise_ultimate_project_manager | to 3.9 (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?
CVE-2025-41102 is an HTML injection vulnerability in Fairsketch's RISE CRM Framework version 3.8.1. It occurs because the application does not properly validate user input sent via a POST request in the 'title' parameter of the '/events/save' endpoint. This allows an attacker with low privileges, requiring user interaction, to inject malicious HTML code into the application. [1]
How can this vulnerability impact me? :
This vulnerability can allow attackers to inject malicious HTML code, which may lead to attacks such as cross-site scripting (XSS). This can result in unauthorized actions performed on behalf of users, theft of sensitive information, or manipulation of the web application's content, potentially compromising user trust and system integrity. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by monitoring POST requests to the '/events/save' endpoint, specifically inspecting the 'title' parameter for injected HTML code. You can use tools like curl or Burp Suite to send crafted POST requests with HTML payloads in the 'title' parameter to test if the system improperly processes or reflects the input. For example, a curl command to test might be: curl -X POST -d "title=<script>alert(1)</script>" https://your-target-domain/events/save and observe if the payload is executed or stored. Additionally, web application scanners that detect HTML injection or cross-site scripting (XSS) vulnerabilities can be used to automate detection. [1]
What immediate steps should I take to mitigate this vulnerability?
The immediate mitigation step is to upgrade the Fairsketch RISE CRM Framework to version 3.9 or later, where this vulnerability has been fixed. Until the upgrade can be applied, you should implement input validation and sanitization on the 'title' parameter in the '/events/save' endpoint to prevent HTML injection. Additionally, applying web application firewall (WAF) rules to block malicious payloads targeting this parameter can help reduce risk. [1]