CVE-2025-11599
BaseFortify
Publication date: 2025-10-11
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 |
|---|---|---|
| campcodes | online_apartment_visitor_management_system | 1.0 |
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-11599 is a critical SQL injection vulnerability in version 1.0 of Campcodes Online Apartment Visitor Management System. It exists in the /forgot-password.php file where the 'email' parameter is improperly handled without adequate input validation or sanitization. This allows attackers to inject malicious SQL code to manipulate database queries. [1]
How can this vulnerability impact me? :
This vulnerability can have severe impacts including unauthorized access to the database, leakage of sensitive information, tampering with or deletion of data, full system control by attackers, and potential disruption of service availability. [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 /forgot-password.php endpoint for SQL injection in the email parameter. You can use tools like sqlmap to automate detection. For example, run: sqlmap -u "http://target/[email protected]" --batch --dbs. Additionally, manual testing by injecting SQL payloads into the email parameter and observing the response can help identify the vulnerability. [1]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include implementing prepared statements to handle the email parameter safely, applying strict input validation and filtering to ensure the email input conforms to expected formats, and minimizing database user permissions by avoiding the use of high-privilege accounts for database operations. Conducting regular security audits is also recommended to detect and address vulnerabilities promptly. [1]