CVE-2025-9653
BaseFortify
Publication date: 2025-08-29
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-educar | to 2.10 (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-9653 is a Stored Cross-Site Scripting (XSS) vulnerability in the Portabilis i-Educar application up to version 2.10. It occurs in the /intranet/educar_projeto_cad.php file, specifically in the 'Cadastrar projeto' page, where the 'nome' and 'observacao' input parameters are not properly validated or sanitized. Attackers can inject malicious scripts into these fields, which are then stored on the server. When other users visit the related page (/intranet/educar_projeto_lst.php), the malicious scripts execute in their browsers, potentially leading to various attacks. [1, 2]
How can this vulnerability impact me? :
This vulnerability can lead to session cookie theft, browser hijacking, credential theft, malware distribution, unauthorized access to sensitive information, website defacement, user misdirection, and reputational damage to affected organizations. Since the malicious scripts execute in users' browsers, attackers can manipulate user sessions and data, potentially compromising user accounts and the integrity of the affected system. [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 /intranet/educar_projeto_cad.php endpoint for improper input sanitization in the 'nome' and 'observacao' parameters. One approach is to submit a payload such as `"><img src=x onerror=alert('CVE-Hunters')>` into these fields and then check if the script executes when accessing /intranet/educar_projeto_lst.php. Additionally, attackers may use Google dorking with queries like `inurl:intranet/educar_projeto_cad.php` to identify vulnerable targets. There are no specific network commands provided, but manual or automated web application testing tools can be used to inject and detect stored XSS payloads. [1, 2]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been published for this vulnerability. It is suggested to consider replacing the affected product with an alternative. Immediate steps include restricting access to the vulnerable endpoint, applying input validation and sanitization if possible, and monitoring for suspicious activity. Since the exploit is publicly available and the vulnerability is remotely exploitable, limiting user privileges and applying web application firewall (WAF) rules to detect and block XSS payloads may help mitigate risk until a patch or replacement is implemented. [2]