2
0

add test sql injection, add protectin agains it (lvl. 1)

This commit is contained in:
Schuledaniel
2026-02-04 14:41:18 +01:00
parent ebee549aab
commit 9f9625ff58
3 changed files with 31 additions and 11 deletions

View File

@@ -0,0 +1,9 @@
## Test SQL Injection
```sql
INSERT INTO user VALUES(
NULL,
'$u_firstname',
'$u_lastname',
''); DELETE FROM user WHERE (u_email LIKE '%');
```