| 제목 | sambitraj STUDENT-MANAGEMENT-SYSTEM 56ba287f2e9031523ccb4244cb6e3fe530e4e5d5 Cleartext Storage of Sensitive Information |
|---|
| 설명 | The affected components are the bundled database schema `aca.zip!/aca.sql`, the login handlers, and dashboard views. The database stores passwords directly in `password` columns, login code compares those stored values to POSTed passwords, and dashboards render password values back into HTML:
```sql
`password` varchar(20) NOT NULL
('admin', '[email protected]', 'admin123');
```
```php
if($row['password'] == $_POST['password']){
$_SESSION['email'] = $row['email'];
}
<input type="password" id="btn1" value="<?php echo $row['password']?>" disabled>
```
Because passwords are recoverable database values and are displayed in dashboard HTML, any SQL injection, dashboard access, or IDOR issue can disclose reusable account credentials. The vulnerability affects admin, student, and teacher password handling. |
|---|
| 원천 | ⚠️ https://github.com/sambitraj/STUDENT-MANAGEMENT-SYSTEM/issues/9 |
|---|
| 사용자 | iron basin (UID 99905) |
|---|
| 제출 | 2026. 07. 17. PM 07:34 (1 월 ago) |
|---|
| 모더레이션 | 2026. 08. 30. PM 07:56 (1 month later) |
|---|
| 상태 | 수락 |
|---|
| VulDB 항목 | 397187 [sambitraj Student Management System 까지 56ba287f2e9031523ccb4244cb6e3fe530e4e5d5 Password aca.sql 비밀번호 약한 암호화] |
|---|
| 포인트들 | 20 |
|---|