| Title | sayan365 student-management-system 1.0 Unauthenticated Access |
|---|
| Description | The `edit_subject.php` script initiates a session with `session_start()` at line 3, but **never verifies** whether the user is actually logged in (e.g., by checking `$_SESSION['username']`). It directly processes the request and displays an edit form based on `$_GET['id']`, and later handles POST requests to update subject data.
Key code snippet:
```php
session_start();
...
if (isset($_GET['id'])) {
// fetches and displays subject data
...
if (isset($_POST['update'])) {
// updates subject record
}
}
``` |
|---|
| Source | ⚠️ https://github.com/sayan365/student-management-system/issues/4 |
|---|
| User | caleby (UID 98084) |
|---|
| Submission | 05/14/2026 09:38 (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 |
|---|