What steps can be taken to make sure a web application using Hibernate, Spring and JSF is secure? What vulnerabilites can exist and what security framework if any is standard?
|
|
|
Security isn't solved just by using a framework. It requires a lot of education, understanding, creativity, and evaluation of risk to avoid making mistakes. Start by reading these URLs
And definitely be up to speed on the top kinds of vulnerabilities, etc. An introduction to security, including the "no silver bullet" article.
|
|||
|
|
|
A good set of practices noted by Joel Coehoorn and couple of others by answering a similar question here:
|
|||
|
I would concur with the other responses in that there is no silver bullet for security or simple framework you just plug in and tada, you're security enabled. Do check out the OWASP site which is a great resource for learning about security. And fully understanding security yourself (rather than delegating security to frameworks) will ultimately make your application more secure. For example, JSF prevents most (if not all?) XSS type attacks by default, but you can override this feature, possibly without realising the security implications and suddenly your JSF code is exposed. Since noone has mentioned it, static code analysis can help to. Check out such things like Findbugs, PMD, and checkstyle among others for basic and free code analysis. Or go for something more heavy duty like Fortify which is designed specifically to detect security vulnerabilies in your application. |
|||
|
|