CVE-2026-10253
Received Received - Intake
SQL Injection in Online House Rental System 1.0

Publication date: 2026-06-01

Last updated on: 2026-06-01

Assigner: VulDB

Description
A vulnerability was detected in itsourcecode Online House Rental System 1.0. This impacts an unknown function of the file /manage_payment.php. The manipulation of the argument ID results in sql injection. It is possible to launch the attack remotely. The exploit is now public and may be used.
CVSS Scores
EPSS Scores
Probability:
Percentile:
Meta Information
Published
2026-06-01
Last Modified
2026-06-01
Generated
2026-06-01
AI Q&A
2026-06-01
EPSS Evaluated
N/A
NVD
EUVD
Affected Vendors & Products
Showing 1 associated CPE
Vendor Product Version / Range
itsourcecode online_house_rental_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?

This vulnerability is a SQL injection flaw found in the Online House Rental System version 1.0, specifically in the /manage_payment.php file. It occurs because the 'id' parameter is not properly validated, allowing attackers to inject malicious SQL code.

Attackers can exploit this remotely without authentication by using various SQL injection techniques such as boolean-based blind, error-based, time-based blind, and UNION query attacks.

Successful exploitation can lead to unauthorized access to the database, data tampering, leakage of sensitive information, control over the system, or disruption of services.


How can this vulnerability impact me? :

This vulnerability can have serious impacts including unauthorized access to your database, which may result in exposure or alteration of sensitive data.

Attackers might manipulate or delete data, gain control over parts of the system, or cause service disruptions, affecting the availability and integrity of your application.


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

This SQL injection vulnerability in the /manage_payment.php file can be detected by testing the 'id' parameter for improper input validation and injection susceptibility.

Common detection methods include using SQL injection testing tools or manual testing techniques such as sending specially crafted payloads to the 'id' parameter and observing the responses.

  • Use curl or wget to send requests with SQL injection payloads, for example: curl "http://target/manage_payment.php?id=1' OR '1'='1"
  • Use sqlmap, an automated SQL injection tool, to test the endpoint: sqlmap -u "http://target/manage_payment.php?id=1" --batch
  • Monitor network traffic for suspicious queries or unexpected database errors returned by the application.

What immediate steps should I take to mitigate this vulnerability?

Immediate mitigation steps include implementing prepared statements with parameter binding to prevent SQL injection.

Strict input validation should be applied to the 'id' parameter to ensure only expected values are accepted.

  • Use prepared statements or parameterized queries in the /manage_payment.php file.
  • Sanitize and validate all user inputs, especially the 'id' parameter.
  • Minimize database user permissions to limit the impact of a potential exploit.
  • Conduct regular security audits and code reviews to detect and fix vulnerabilities early.

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 allows unauthorized database access, data tampering, and sensitive information leakage. Such unauthorized access and potential exposure of sensitive data can lead to non-compliance with data protection regulations like GDPR and HIPAA, which require safeguarding personal and sensitive information against unauthorized access and breaches.

Exploitation of this vulnerability could result in compromised confidentiality, integrity, and availability of data, which are core principles in many compliance frameworks. Therefore, organizations using this system without proper mitigation may face legal and regulatory consequences.


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