Slide 23
Slide 23 text
Application mitigations
●
Validation and proper sanitization(remove DOM, js, HTML…).
●
Prepared Statements (with Parameterized Queries).
●
Create a function that check a Block list with common words in
attacks (eval,timeout,union,--, select, delete, version,
benchmark, sleep, /**/...), set all string to lower case before
scan pattern.
●
Study your ORM(SQLalchemy, Hibernate...) to prevent pitfalls
in resources.
●
Follow Mitre and OWASP tricks to hardening etc...