Auditor
Table of Contents
Classes
- Base
- Abstract class of all security auditors
- Path
- Path security auditor Searching "path traversal" like strings, for example: /foo/../bar/
- Sql
- Sql security auditor Searching SQLi like strings, for example: union select money,1,2,3 from big_guy;
- Xss
- Xss security auditor Searching XSS like strings, for example: <img src=x onerror=prompt(/Hi_big_guy/)>