1 Injection & SQL injection
Injection happens when untrusted input is interpreted as code. In SQL injection an attacker manipulates a query (e.g. ' OR 1=1 --). Defence: always use parameterised queries / prepared statements, never string concatenation, and validate input.