CVE-2025-5580
BaseFortify
Publication date: 2025-06-04
Last updated on: 2025-06-04
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| codeastro | real_estate_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-5580 is a critical SQL Injection vulnerability in the CodeAstro Real Estate Management System version 1.0, specifically in the /login.php file. It occurs due to improper handling of the 'email' parameter, allowing an attacker to inject malicious SQL code. This enables unauthorized manipulation of the database queries, potentially leading to unauthorized access or data leakage. The vulnerability can be exploited remotely without authentication, and proof-of-concept exploit code is publicly available. [1, 2]
How can this vulnerability impact me? :
This vulnerability can impact you by allowing attackers to gain unauthorized access to the system, manipulate or leak sensitive data, and potentially disrupt the availability and integrity of the application. Since it can be exploited remotely without authentication and is easy to exploit, it poses a significant security risk to the affected system and its data. [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 /login.php endpoint for SQL injection via the 'email' parameter. One approach is to use SQL injection testing tools or manual injection attempts with payloads such as "' OR '1'='1" in the email field to observe if the application behaves unexpectedly or returns SQL errors. Additionally, Google Hacking techniques like searching for "inurl:login.php" can help identify potentially vulnerable targets. Specific commands could include using curl or sqlmap, for example: curl -X POST -d "email=' OR '1'='1' -- &password=test" http://target/login.php or sqlmap -u "http://target/login.php" --data="email=test&password=test" -p email --batch. However, no exact commands are provided in the resources. [2]
What immediate steps should I take to mitigate this vulnerability?
No known countermeasures or mitigations have been documented for this vulnerability. The suggested immediate step is to replace the affected product (CodeAstro Real Estate Management System version 1.0) with an alternative solution. Since the vulnerability is critical and exploitable remotely without authentication, avoiding use of the vulnerable system is recommended until a patch or fix is available. [2]