| Title | itsourcecode Hospital Management System 1.0 SQL Injection |
|---|
| Description | Description:
The patient login concatenates both `loginid` and `password` directly into SQL without sanitization. Both fields are independently injectable. Passwords stored in plaintext.
Vulnerable Code:
**File**: `patientlogin.php`, Line 12
```php
$query = "SELECT * FROM patient WHERE loginid='".$_POST['loginid']."' AND password='".$_POST['password']."'";
$result = mysqli_query($con, $query);
```
Plaintext password comparison, no escaping.
Impact:
- Patient account takeover
- Access to all patient medical records, treatment history
- Plaintext credential exposure via UNION injection
Reference: https://github.com/microwaveabi/vul/issues/69 |
|---|
| Source | ⚠️ https://github.com/microwaveabi/vul/issues/69 |
|---|
| User | microwave (UID 96185) |
|---|
| Submission | 07/11/2026 05:18 (2 months ago) |
|---|
| Moderation | 08/26/2026 18:44 (2 months later) |
|---|
| Status | Duplicate |
|---|
| VulDB entry | 376306 [itsourcecode Hospital Management System 1.0 /patientlogin.php loginid sql injection] |
|---|
| Points | 0 |
|---|