CVE-2025-9608
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-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. |
| 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. |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
CVE-2025-9608 is a SQL injection vulnerability in Portabilis i-Educar up to version 2.10, specifically in the 'Formula de Cálculo de Média' page component at the /module/FormulaMedia/view file. The vulnerability occurs because the application does not properly validate or sanitize the 'id' parameter, allowing an attacker to inject malicious SQL commands. This can be exploited remotely without authentication, enabling attackers to manipulate the database through crafted input. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing unauthorized access to sensitive data such as credentials, personal information, and configuration details. Attackers can enumerate the database schema, manipulate data (insert, modify, delete), cause denial of service via time delays, and potentially escalate to remote code execution if combined with other vulnerabilities. The attack is easy to execute remotely without authentication, posing a significant risk to confidentiality, integrity, and availability of the affected system. [1, 2]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the `id` parameter of the `/module/FormulaMedia/view` endpoint for SQL injection using a time-based blind SQL injection payload. For example, sending a GET request with the payload `1'+AND+7097=(SELECT+7097+FROM+PG_SLEEP(5))+AND+'WqeR'='WqeR` appended to the `id` parameter will cause a 5-second delay in the server response if the vulnerability is present. A sample command using curl would be: curl -i "http://<target-host>/module/FormulaMedia/view?id=1'+AND+7097=(SELECT+7097+FROM+PG_SLEEP(5))+AND+'WqeR'='WqeR" [2]
What immediate steps should I take to mitigate this vulnerability?
No official patches or mitigations have been provided by the vendor, Portabilis. Immediate steps include restricting access to the vulnerable endpoint, especially limiting permissions to users who can access the Escola menu and its submenus. Consider replacing the affected component with an alternative product. Monitoring and blocking suspicious requests targeting the `id` parameter may help reduce risk until a fix is available. [1]