SQL Injection Challenge _

SQL Injection Vulnerability Demo

SQL Injection (SQLi)

SQL Injection is a code injection technique that exploits vulnerabilities in applications that interact with databases. Attackers can insert malicious SQL statements that can read, modify, or delete data.

Try to bypass the login by entering SQL code that will make the WHERE clause always evaluate to true.

Enter anything in the username field and the following in the password field:

anything' OR '1'='1

This SQL injection attack modifies the query to always return true, bypassing the authentication check.

Admin Login