|
|
YOUR FEEDBACK
Did you read today's front page stories & breaking news?
SYS-CON.TV |
TOP THREE LINKS YOU MUST CLICK ON JavaFX
How to Create Secure Web Applications with Struts
Imagine building a house starting with only a pile of timber and a lump of iron
By: Alex Smolen
Mar. 19, 2006 01:00 PM
Digg This!
Page 2 of 3
« previous page
next page »
So how can we use the Validator plug-in to improve security? 1. Think "White List" - Most common attacks based on input validation flaws leverage special "meta-characters" to inject user-modifiable data into places it shouldn't be. A typical security mistake developers make is to try to recognize, clean, or escape known "bad" values rather than accept only "good" values. This becomes a problem when a new "bad" value is discovered. With the enormous number of different locales, encodings, syntaxes, and variations thereof, it's likely this strategy will fail, or at least be difficult to maintain. Struts Validator plug-in lets users verify that input data conforms to strict requirements and is well formed. The validation routines Struts uses can leverage regular expressions (with the mask field) to ensure that only safe strings are accepted. Sometimes, it may be necessary to accept some malicious characters, but it's important to handle them very carefully. Furthermore, data can be verified to ensure that it's within reasonable length bounds to avoid denial-of-service-style attacks. 2. Be Consistent - Using the Validator plug-in, it's significantly easier to verify that there are no holes in the input validation mechanism. This means that all the data from the user should be in a ValidatorForm class and all fields should be specified in the validation framework. This can be checked simply by matching XML elements and it's much easier to discern than having widespread, inconsistent input validation schemes. 3. Be Strict - Furthermore, there are some cases where it's preferable to let the user select a few values from a finite list than to let him enter arbitrary data (for example, in cases of a yes/no, multiple choice, or filename). When designing input forms, it's good practice to constrain the possible values as narrowly as possible and reinforce these constraints through validation.
Struts and Access Control The Struts framework, as a whole, is built to be extensible, and this is one of its major strengths. Whether an application uses declarative or programmatic access control, Struts has built-in support and extension points for fulfilling access control requirements.
Declarative Access Control
<action path="/AdminLogin" This allows for a more natural approach to access control based on the named Action classes rather than URL patterns. One important thing to note is that this doesn't secure JSPs, HTML, or other non-Action resources. If all JSPs are only accessible through the controller (which is a Struts/MVC best practice), a recommended countermeasure is to put all JSPs in the WEB-INF folder so they aren't directly available to users. However, this requires that the container stipulates that files in the WEB-INF folder aren't accessible to Web users. Otherwise, JSPs can be protected by standard security constraints in the configuration file.
Programmatic Access Control
protected boolean processRoles( HttpServletRequest request, There are other places that access control could occur, including Servlet Filters and ActionServlets, which will be discussed in the struts and Cross-Cutting Security Concerns section. Additionally, Struts has tag libraries to support programmatic "content-level" access control in JSP pages. Using the following tag, content in JSP pages can be secured according to roles:
<logic:present role="administrator"/> In almost all cases, it's recommended that you use the security mechanisms built into the containers and frameworks rather than write them from scratch. Struts provides a granular, integrated set of role-based access control functionalities that help teams design and implement secure applications.
Struts and Error Handling Struts has a very powerful and extensible exception-handling mechanism built-in. It's very important, for security's sake, to use this carefully to improve the user experience without letting information leak to malicious attackers. Specifically, it's important to have robust error handling, so that expected errors (e.g., bad logins) are handled as appropriately as unexpected errors (NullPointerExceptions) and that there are good logging facilities to verify security-relevant events. For Java Web applications in general, there are several ways to catch exceptions.
1. Use try/catch blocks.
try { 2. Use the JSP page directive "errorPage". <%@ page errorPage="bad_login.jsp" %>
3. In Web.xml, declare error-page and exception type forwards.
<error-page> Page 2 of 3 « previous page next page »
LATEST JAVA STORIES & POSTS
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
|
SYS-CON FEATURED WHITEPAPERS MOST READ THIS WEEK BREAKING JAVA NEWS
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||