CVE-2025-9106
BaseFortify
Publication date: 2025-08-18
Last updated on: 2026-04-29
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| portabilis | i-diario | to 1.5.0 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-94 | The product constructs all or part of a code segment using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the syntax or behavior of the intended code segment. |
| 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-9106 is a Stored Cross-Site Scripting (XSS) vulnerability in Portabilis i-Diario up to version 1.5.0. It affects the component "Informações Adicionais Page" at the endpoint /planos-de-ensino-por-disciplina/. The vulnerability occurs because the application does not properly validate or sanitize user inputs in the parameters Parecer, Conteúdos, and Objetivos. Attackers can inject malicious scripts via these parameters, which are then stored on the server and executed in the browsers of users who view the affected page, leading to potential security risks such as session hijacking and credential theft. [1, 2]
How can this vulnerability impact me? :
This vulnerability can lead to several impacts including theft of session cookies enabling session hijacking, download and installation of malware on victim systems, browser hijacking, theft of user credentials, unauthorized access to sensitive information, website defacement, misdirection of users by altering website content, and damage to business reputation through misinformation or defacement. [1]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the affected endpoint `/planos-de-ensino-por-disciplina/[ID]` for stored cross-site scripting (XSS) by injecting payloads into the parameters `Parecer`, `Conteúdos`, and `Objetivos`. For example, sending a POST request with a payload like `"><script>alert('XSS-PoC')</script>` in the `Parecer` parameter and then accessing the page to see if the script executes confirms the vulnerability. Detection can be done using tools like curl or Burp Suite to send crafted POST requests and observe the response. Example curl command to test injection: `curl -X POST -d "Parecer=\"><script>alert('XSS-PoC')</script>" https://target/planos-de-ensino-por-disciplina/[ID]` followed by visiting the page in a browser to check for script execution. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include avoiding use of the vulnerable Portabilis i-Diario version up to 1.5.0, as no vendor patch or countermeasure is available. Consider switching to alternative products or disabling the affected component `/planos-de-ensino-por-disciplina/` if possible. Additionally, implement web application firewall (WAF) rules to block or sanitize malicious input targeting the parameters `Parecer`, `Conteúdos`, and `Objetivos`. Educate users to be cautious of suspicious links and inputs until a fix is available. [2]