| عنوان | 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) |
|---|
| ارسال | 11/07/2026 05:18 AM (2 أشهر منذ) |
|---|
| الاعتدال | 26/08/2026 06:44 PM (2 months later) |
|---|
| الحالة | مكرر |
|---|
| إدخال VulDB | 376306 [itsourcecode Hospital Management System 1.0 /patientlogin.php loginid حقن SQL] |
|---|
| النقاط | 0 |
|---|