| Title | sayan365 student-management-system 1.0 Unauthenticated Access |
|---|
| Description | The `delete_student.php` script implements a three‑step workflow for deleting student records: (1) initial form display, (2) selecting a student by enrollment ID, and (3) confirming and executing the deletion. However, the file contains **no authentication or authorisation check**. It does not call `session_start()` and never verifies whether the user is logged in.
The critical code structure:
```php
include 'db.php';
if (!isset($_POST['select_enrollment']) && !isset($_POST['delete'])) {
// Step 1: show initial page/form
}
if (isset($_POST['select_enrollment'])) {
// Step 2: fetch and display student details for the given enrollment_id
}
if (isset($_POST['delete'])) {
// Step 3: execute DELETE query for the given enrollment_id
}
``` |
|---|
| Source | ⚠️ https://github.com/sayan365/student-management-system/issues/8 |
|---|
| User | Eden. (UID 98178) |
|---|
| Submission | 05/14/2026 10:00 (3 months ago) |
|---|
| Moderation | 06/02/2026 15:54 (19 days later) |
|---|
| Status | Duplicate |
|---|
| VulDB entry | 367927 [sayan365 student-management-system up to 7f3c9ce7d410332335c2affac93a385485051800 improper authentication] |
|---|
| Points | 0 |
|---|