CVE-2025-9607
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.0 (inc) |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-74 | The product constructs all or part of a command, data structure, or record using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify how it is parsed or interpreted when it is sent to a downstream component. |
| CWE-89 | The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-9607 is a Blind Time-Based SQL Injection vulnerability in Portabilis i-Educar up to version 2.10. It affects the 'id' parameter of the /module/TabelaArredondamento/view endpoint, which is part of the Tabelas de Arredondamento Page. The application does not properly validate or sanitize this parameter, allowing attackers to inject arbitrary SQL commands into the backend database. This can be exploited remotely and may lead to unauthorized data access, data manipulation, denial of service through time delays, and potentially remote code execution if combined with other vulnerabilities. [1, 2]
How can this vulnerability impact me? :
This vulnerability can compromise the confidentiality, integrity, and availability of the affected system's data. An attacker can access unauthorized data, modify or delete data, cause denial of service by delaying responses, and potentially execute remote code if combined with other vulnerabilities. The exploit can be launched remotely and is relatively easy to perform, posing a significant security risk. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by sending specially crafted HTTP GET requests to the vulnerable endpoint `/module/TabelaArredondamento/view` with the `id` parameter manipulated to include a time-based SQL injection payload. For example, appending the payload `'+AND+7097=(SELECT+7097+FROM+PG_SLEEP(5))+AND+'WqeR'='WqeR` to the `id` parameter will cause the server to delay its response by 5 seconds if vulnerable. Monitoring for such delayed responses can confirm the presence of the vulnerability. A sample curl command to test this could be: curl -i "http://<target>/module/TabelaArredondamento/view?id=1'+AND+7097=(SELECT+7097+FROM+PG_SLEEP(5))+AND+'WqeR'='WqeR" This command sends a request that, if the system is vulnerable, will result in a noticeable delay in response time, indicating SQL injection vulnerability. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include restricting access to the vulnerable endpoint `/module/TabelaArredondamento/view` to trusted users only, especially since exploitation requires permissions related to the 'Escola' menu. If possible, disable or block access to this component until a patch or fix is available. Since no known countermeasures or mitigations currently exist, consider replacing or upgrading the affected Portabilis i-Educar component or product to a version that addresses this vulnerability. Additionally, monitor network traffic for suspicious requests targeting the `id` parameter and implement web application firewall (WAF) rules to detect and block SQL injection attempts. [2]