| 제목 | itsourcecode Hospital Management System 1.0 SQL Injection |
|---|
| 설명 | 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 |
|---|
| 원천 | ⚠️ https://github.com/microwaveabi/vul/issues/69 |
|---|
| 사용자 | microwave (UID 96185) |
|---|
| 제출 | 2026. 07. 11. AM 05:18 (2 개월 ago) |
|---|
| 모더레이션 | 2026. 08. 26. PM 06:44 (2 months later) |
|---|
| 상태 | 중복 |
|---|
| VulDB 항목 | 376306 [itsourcecode Hospital Management System 1.0 /patientlogin.php loginid SQL 주입] |
|---|
| 포인트들 | 0 |
|---|