Hacking
The first thing that got me obsessively interested in computers was hacking.
- XSS vulnerable app 001-a
Disable all HTML tags to secure your pages! Simply disbaling some like `img` will not help.
- XSS vulnerable app 001-b
Disable all HTML tags to secure your pages (2.0)
- XSS vulnerable app 002-a
Since we are not printing any user-submitted values, this should be safe.
- XSS vulnerable app 002-b
Strip HTML from all user-submitted inputs using military grade regex.
- XSS vulnerable app 002-c
Do not accept input that does not match your criteria.
- XSS vulnerable app 003-a
This series of vulnerable apps do not print the user input on the page. The user input is used in the JavaScript code.