This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "JSP JSTL"

From OWASP
Jump to: navigation, search
(Unified EL)
(paramValues)
Line 129: Line 129:
 
* A String[] of parameter values.
 
* A String[] of parameter values.
 
* Equivalent to request.getParameterValues().
 
* Equivalent to request.getParameterValues().
 +
''Using JSTL tags for this example.''
 
<pre>
 
<pre>
 
<c:forEach var='parameter' items='${paramValues}'>   
 
<c:forEach var='parameter' items='${paramValues}'>   
Line 137: Line 138:
 
</c:forEach><br>
 
</c:forEach><br>
 
</pre>
 
</pre>
 +
 
=== header ===
 
=== header ===
 
* Maps a request header name to a single value.
 
* Maps a request header name to a single value.

Revision as of 19:35, 11 March 2008

Brief Overview of JSP Architecture

JSPs are delivered to a container that provides services like life-cycle management and runtime support. A JSP gets translated to a servlet class which is instantiated at runtime. A request headed for a particular JSP will be directed by the container to its corresponding servlet class (aka jsp implementation object). It then handles requests and generates responses. The default request response objects are HttpServletRequest and HttpServletResponse. JSP makes use of implicit objects that can be considered taint sources, sinks and propagators. I won't discuss further details since that is outside the scope of this project. For further information try this reference guide.


JSP In Light of Security

There’s not much to say here except that JSPs can act as both a model and view. It can operate fairly well without a distinct service or business layer because it doesn’t quite enforce separation of logic and concerns (hence the advent of development frameworks).

I won’t discuss details of web app design here, but one should understand that lack of separation can have negative effects on web-app stability and security. But even so, lack of input validation can lead to easy security vulns in JSP, namely XSS.

Commonly, JavaBeans are used in conjunction with JSP to store parameters and implement business logic. Most of my examples will use beans to demonstrate taint propagation and proper cleansing.

For more data on design with JSP and servlets, see this best practices article


JSP Standard Actions

Propagators

<jsp:usebean>

  • Makes a Java Bean available to the rest of the page by instantiating the object and binding it to a variable.
  • Once you have that you can modify and access it using the jsp setProperty and getProperty tags.
  • You can also call methods on it in scriptlets.
<jsp:useBean id="user" class="SessionBeans.UserSessionBean" scope="session"/>
<%=user.getStrParam%>

<jsp:setProperty>

  • Sets one or more bean property values in a bean defined by <jsp:usebean>.

Different ways to set bean properties with request parameters and supplied values

<%--set all bean properties with matching request parameters--%>
<jsp:setProperty name="user" property="*"/>

<%--set one property with matching request parameter--%>
<jsp:setProperty name="user" property="strParam"/>

<%--set one property with supplied value--%>
<jsp:setProperty name="user" property="strParam" value="blah" />

Sinks

<jsp:getProperty>

  • Gets a value from a bean object and writes to the page.

<jsp:include>
Displays contents of another page within current. Only a problem if included page contains xss.


Example: Using standard actions to produce xss.

Set the bean properties with request parameters on one page.

<jsp:useBean id="user" class="SessionBeans.UserSessionBean" scope="session"/>
<jsp:setProperty name="user" property="*"/>

Later on another page...

<jsp:useBean id="user" class="SessionBeans.UserSessionBean" scope="session"/>
<jsp:getProperty name="user" property="strParam"/>

JSP Implicit Objects

There are a handful of objects made available in JSPs which are susceptible to security flaws. Their corresponding java class functions are used as is in scriptlets. All the same security rules should apply.

Implicit Object Java Class Relevant Functions
request javax.servlet.ServletRequest getParameter(String parametername)

getParameterValues()

getParameterMap()

session javax.servlet.http.HttpSession setAttribute(String name, Object value)

getAttribute(String name) removeAttribute(String name)

out javax.servlet.jsp.JspWriter print(char[] s)

print(java.lang.String s)

println(java.lang.String x)

println(char[] x)

Examples:
saveinfo.jsp

<% 
    String name = request.getParameter("username");
    session.setAttribute("taintedAttribute", name);
%>

displayinfo.jsp

my xss varible: <%=session.getAttribute(name)%>

Unified EL

Unified EL is a feature of JSP 2.1 it is a union of JSP 2.0 and JSF expression languages. Expressions enclosed in ${…} are immediately evaluated and printed to the page. Expressions consist of EL implicit objects and bean names defined with jsp:usebean.
All EL implicit objects are propagators that can be sunk for XSS as an expression.

  • param
  • paramValues
  • header
  • headerValues
  • cookie?

param

  • References a request parameter by name.
  • Equivalent to request.getParameter(“asdf”);
Welcome ${param.userName}!

paramValues

  • A String[] of parameter values.
  • Equivalent to request.getParameterValues().

Using JSTL tags for this example.

<c:forEach var='parameter' items='${paramValues}'>  
	<c:out value='${parameter.key}'/> = 
	<c:forEach var='value' items='${parameter.value}'>
		<c:out value='${value}' escapeXml="false"/><br> 
	</c:forEach>         
</c:forEach><br>

header

  • Maps a request header name to a single value.
  • Equivalent to request.getHeader.
${header.cookie}

headerValues

  • A String[] array of header values.
  • The following example is the same as above.
<c:forEach var="head" items="${headerValues}">
		<c:out value="${head.key}" /> =
	         <c:forEach var="val" items="${head.value}">
			<c:out escapeXml="false" value="${val}" /><br>				
		</c:forEach>
	</c:forEach><br>

cookie

Not sure if there's anything juicy here...

pageScope

requestScope

sessionScope

applicationScope

see also [J2EE Bad Practices: JSP Expressions]

JSTL Tags

JSTL Functions