CVE-2025-8220
BaseFortify
Publication date: 2025-07-27
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 |
|---|---|---|
| engeman | web | to 12.0.0.1 (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-8220 is a critical SQL injection vulnerability in Engeman Web versions up to 12.0.0.1, specifically in the Password Recovery Page (/Login/RecoveryPass). It occurs due to improper handling of the LanguageCombobox parameter, allowing unauthenticated attackers to inject malicious SQL code remotely. This can compromise the application's database confidentiality and integrity by enabling unauthorized access or modification of sensitive data. [1, 3]
How can this vulnerability impact me? :
Exploitation of this vulnerability can lead to unauthorized access and modification of sensitive data in the application's database, potentially compromising confidentiality and integrity. Attackers can also cause denial of service at the component level by altering critical table values. Since the attack requires no authentication and can be launched remotely, it poses a significant risk to affected systems. [1, 3]
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This vulnerability can be detected by testing the /Login/RecoveryPass endpoint for SQL injection via the LanguageCombobox parameter. You can use tools like curl or sqlmap to send crafted requests to this endpoint and observe if SQL errors or unexpected behavior occur. For example, using curl: curl -X POST 'http://target/Login/RecoveryPass' -d 'LanguageCombobox=1' and then try injecting SQL payloads such as ' OR '1'='1 to see if the response indicates SQL injection. Automated scanners like sqlmap can be used as: sqlmap -u 'http://target/Login/RecoveryPass' --data='LanguageCombobox=1' --risk=3 --level=5 to detect the vulnerability. [1, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include disabling or restricting access to the /Login/RecoveryPass password recovery page to prevent exploitation. Since no official patches or vendor responses are available, consider implementing web application firewall (WAF) rules to block malicious SQL injection attempts targeting the LanguageCombobox parameter. Additionally, monitor logs for suspicious activity related to this endpoint. Ultimately, replacing the affected Engeman Web product with an alternative solution is recommended due to the lack of vendor support and fixes. [3]