Submit #829568: sayan365 student-management-system 1.0 Unauthenticated Accessinfo

Titlesayan365 student-management-system 1.0 Unauthenticated Access
DescriptionBoth `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)
Submission05/14/2026 09:54 (3 months ago)
Moderation06/02/2026 15:54 (19 days later)
StatusDuplicate
VulDB entry367927 [sayan365 student-management-system up to 7f3c9ce7d410332335c2affac93a385485051800 improper authentication]
Points0

Do you want to use VulDB in your project?

Use the official API to access entries easily!