CVE-2026-10252
SQL Injection in Online House Rental System
Publication date: 2026-06-01
Last updated on: 2026-06-01
Assigner: VulDB
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| itsourcecode | online_house_rental_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?
This vulnerability is a critical SQL injection issue found in the Online House Rental System version 1.0, specifically in the /manage_tenant.php file. It occurs due to improper input validation of the 'id' parameter, which allows attackers to inject malicious SQL queries without needing to authenticate.
Attackers can exploit this vulnerability remotely using various SQL injection techniques such as boolean-based blind, error-based, time-based blind, or UNION query methods.
How can this vulnerability impact me? :
Exploitation of this vulnerability can lead to unauthorized access to the database, allowing attackers to tamper with data, leak sensitive information, compromise the system, or disrupt services.
How can this vulnerability be detected on my network or system? Can you suggest some commands?
This SQL injection vulnerability in the /manage_tenant.php file can be detected by testing the id parameter for SQL injection flaws.
- Use automated SQL injection detection tools such as sqlmap targeting the vulnerable URL parameter, for example: sqlmap -u "http://target/manage_tenant.php?id=1" --batch
- Manually test the id parameter by injecting SQL payloads such as ' OR '1'='1 or ' UNION SELECT NULL-- to observe unexpected behavior or error messages.
- Monitor network traffic for suspicious requests containing SQL injection patterns targeting the id parameter.
What immediate steps should I take to mitigate this vulnerability?
Immediate mitigation steps include:
- Implement prepared statements with parameterized queries to prevent SQL injection.
- Apply strict input validation and sanitization on the id parameter.
- Minimize database user permissions to limit the impact of a potential exploit.
- Conduct regular security audits and code reviews focusing on input handling.
- If possible, update or patch the system to a version where this vulnerability is fixed.
How does this vulnerability affect compliance with common standards and regulations (like GDPR, HIPAA)?:
The SQL injection vulnerability in the Online House Rental System 1.0 can lead to unauthorized database access, data tampering, and sensitive information leakage.
Such unauthorized access and potential exposure of sensitive data can result in non-compliance with data protection regulations and standards such as GDPR and HIPAA, which require the protection of personal and sensitive information.
Failure to secure systems against such vulnerabilities may lead to breaches that violate these regulations, potentially resulting in legal penalties, reputational damage, and loss of trust.