playframework owasp top 10
I'm thinking about using Play for a large-scale project, so, has anyone battle-tested Play framework for OWASP Top 10? Are there any security problems you know of in Play framework? On the OWASP Top 10 and Play (some info here ): A1: Injection Uses JPA and escapes strings by default A2: Cross-Site Scripting (XSS) Since version 1.0.1, Play’s template engine automatically escapes string A3: Broken Authentication and Session Management Play is stateless, no session involved. Cookies are protected with cryptography. Storing data safely on the database (passwords) via hashing depends on the user,