CVE-2025-9597
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 |
|---|---|---|
| admerc | apartment_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-9597 is a critical SQL injection vulnerability in itsourcecode Apartment Management System version 1.0, specifically in the file /o_dashboard/rented_all_info.php. The vulnerability occurs because the 'uid' parameter is not properly validated or sanitized, allowing attackers to inject malicious SQL code. This enables unauthorized access to the database, potentially leading to data exposure, modification, or deletion. The attack can be launched remotely without authentication. [1, 2, 3]
How can this vulnerability impact me? :
This vulnerability can have severe impacts including unauthorized access to sensitive data, modification or deletion of database records, full system control by attackers, and disruption of service availability. Since exploitation does not require authentication, attackers can remotely compromise the system, threatening data confidentiality, integrity, and availability. [1, 2, 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 'uid' GET parameter in the file /o_dashboard/rented_all_info.php for SQL injection. Common detection methods include using SQL injection testing tools like sqlmap with payloads targeting the 'uid' parameter. Example commands include: - Using sqlmap: sqlmap -u "http://target/o_dashboard/rented_all_info.php?uid=1" --batch - Manual testing with payloads such as: http://target/o_dashboard/rented_all_info.php?uid=-6440' OR 3549=3549 # http://target/o_dashboard/rented_all_info.php?uid=14' AND SLEEP(5)-- Additionally, vulnerable targets can be identified using Google Dorking with the query: inurl:o_dashboard/rented_all_info.php [2, 3]
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include: - Implement prepared statements with parameter binding to prevent SQL injection. - Enforce strict input validation and filtering on the 'uid' parameter to ensure only expected input is accepted. - Minimize database user privileges by avoiding use of high-privilege accounts for database operations. - Conduct regular security audits of code and systems to detect and fix vulnerabilities. If possible, consider replacing the affected product with an alternative solution as no known mitigations are provided by the vendor. [2, 3]