← Back to home
Security — Injection Beginner 8 possible tests

SQL Injection

A login form that processes username input in an unsafe way. Your goal is to find the input combination that bypasses authentication entirely.

What is SQL Injection?

SQL injection is an attack where malicious SQL statements are inserted into an input field with the intent of manipulating the database query behind it. A successful injection can expose data, bypass authentication, or destroy records.

What is hidden here

True PositiveOne input string is correctly detected and blocked
False PositiveOne legitimate input is incorrectly rejected — try names with apostrophes
Bug FoundOne SQLi string bypasses the filter entirely and breaks authentication
True NegativeValid credentials log in successfully

Login Form


Suggested test inputs