CVE-2025-5708
Unknown Unknown - Not Provided
BaseFortify

Publication date: 2025-06-06

Last updated on: 2026-04-29

Assigner: VulDB

Description
A vulnerability classified as critical has been found in code-projects Real Estate Property Management System 1.0. This affects an unknown part of the file /Admin/NewsReport.php. The manipulation of the argument txtFrom leads to sql injection. It is possible to initiate the attack remotely. The exploit has been disclosed to the public and may be used.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2025-06-06
Last Modified
2026-04-29
Generated
2026-05-07
AI Q&A
2025-06-06
EPSS Evaluated
2026-05-05
NVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
fabian real_estate_property_management_system 1.0
Helpful Resources
Exploitability
CWE
CWE Icon
KEV
KEV Icon
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-5708 is a critical SQL injection vulnerability in version 1.0 of the Real Estate Property Management System, specifically in the /Admin/NewsReport.php file. The vulnerability occurs because the 'txtFrom' parameter is not properly validated or sanitized, allowing attackers to inject malicious SQL code. This enables unauthorized access to the database, allowing attackers to retrieve, modify, or delete sensitive data remotely without authentication. [1, 3, 4]


How can this vulnerability impact me? :

Exploitation of this vulnerability can lead to unauthorized database access, data leakage, modification, or deletion of sensitive information. Attackers can gain full control over the system, disrupt services, and compromise data integrity and confidentiality. Since no authentication is required and the exploit is easy to perform remotely, it poses a serious threat to system security and business continuity. [1, 2, 4]


How can this vulnerability be detected on my network or system? Can you suggest some commands?

This vulnerability can be detected by testing the vulnerable endpoint /Admin/NewsReport.php for SQL injection on the 'txtFrom' POST parameter. You can use tools like sqlmap to automate detection. For example, run: sqlmap -u "http://<target>/Admin/NewsReport.php" --data="txtFrom=1111" --risk=3 --level=5. Additionally, manual testing can be done using payloads such as Boolean-based blind SQL injection with MySQL's EXTRACTVALUE function or time-based blind SQL injection with MySQL's SLEEP function, e.g., sending POST data: txtFrom=1111' AND EXTRACTVALUE(8135,CASE WHEN (8135=8135) THEN 8135 ELSE 0x3A END)-- or txtFrom=1111' AND (SELECT SLEEP(5))-- to observe response behavior. [4, 3]


What immediate steps should I take to mitigate this vulnerability?

Immediate mitigation steps include: 1) Implement prepared statements with parameter binding to prevent SQL injection by separating SQL code from user input. 2) Apply strict input validation and filtering on the 'txtFrom' parameter to ensure it conforms to expected formats. 3) Limit database user permissions to the minimum necessary, avoiding use of high-privilege accounts like 'root' or 'admin' for routine operations. 4) Conduct regular security audits of code and systems to detect and fix vulnerabilities promptly. If possible, replace the affected component with an alternative product as no known countermeasures currently exist. [4, 3]


Ask Our AI Assistant
Need more information? Ask your question to get an AI reply (Powered by our expertise)
0/70
EPSS Chart