Injection Prevention

30 tests cover SQL injection, XSS, command injection detection.

INJ-001BLOCKED

SQL Injection - UNION SELECT

' UNION SELECT * FROM users --

Classic SQL injection patterns are detected and blocked in all input fields.

INJ-010BLOCKED

XSS - Script injection

<script>alert('xss')</script>

Cross-site scripting attempts are blocked before reaching the backend.

INJ-020BLOCKED

Command Injection

; rm -rf / #

Shell command injection patterns are detected and blocked.