| Title | sayan365 student-management-system 1.0 Unauthenticated Access |
|---|
| Description | Both `delete_attendance.php` and `delete_marks.php` perform destructive database operations (deletion of attendance records and marks) without any form of authentication or session validation. The scripts receive the record ID directly via `$_GET['id']` and execute a DELETE query, without calling `session_start()` or checking for a valid login.
Example code pattern (common to both files):
```php
if (isset($_GET['id'])) {
$id = $_GET['id'];
$sql = "DELETE FROM ... WHERE id = $id";
// executes the query
}
``` |
|---|
| Source | ⚠️ https://github.com/sayan365/student-management-system/issues/7 |
|---|
| User | Et11an (UID 98151) |
|---|
| Submission | 05/14/2026 09:54 (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 |
|---|