| Title | SourceCodester BarbarBaba 1.0 SQL Injection (Authentication Bypass) |
|---|
| Description | A SQL Injection vulnerability exists in the administrator login functionality of BarbarBaba version 1.0.
The login process in panel/index.php directly incorporates the username POST parameter into a SQL query without any sanitization, escaping, or use of prepared statements. This allows an attacker to manipulate the SQL query logic and bypass the authentication check.
$adminuser=$_POST['username'];
$password=md5($_POST['password']);
$query=mysqli_query($con,"select ID from tbladmin where UserName='$adminuser' && Password='$password' "); |
|---|
| Source | ⚠️ https://gist.github.com/c4ttr4ck/ce493363681ae3d7c7a500634818e219 |
|---|
| User | c4ttr4ck (UID 75518) |
|---|
| Submission | 04/26/2026 23:04 (3 months ago) |
|---|
| Moderation | 05/24/2026 08:29 (27 days later) |
|---|
| Status | Duplicate |
|---|
| VulDB entry | 313776 [SourceCodester Best Salon Management System 1.0 Login Username sql injection] |
|---|
| Points | 0 |
|---|