Recipe Name:
Session configuration: Cookies: Set HttpOnly flag to true
Description:
Prevent client-side scripts from accessing the cookie by setting the HttpOnly flag to true
Level:
error
Language:
- java
Tags:
- security
- web
- Apache Shiro
- OWASP Top 10
Documentation
Cookies should be configured securely using the http-only and secure settings.
Using setSecure(true)
ensures the cookie is only sent over HTTPS. Otherwise, when using the default setting, the cookie will be sent over an unencrypted HTTP connection. This enables attackers to sniff the contents of the cookie, possibly leading to disclosure of the session ID's via a Man-in-the-Middle attack.
Using setHttpOnly(true)
, can only be accessed through the HTTP protocol, protecting it from client-side scripts. Cookies are frequently the target of Cross-Site Scripting (XSS) attacks. Setting these flags will mitigate many XSS attack vectors.
SimpleCookie simpleCookie = new SimpleCookie();After
SimpleCookie simpleCookie = new SimpleCookie(); simpleCookie.setSecure(true); simpleCookie.setHttpOnly(true);Resources
Recipe
id: scw:web:apache:simplecookie-set-http-only version: 10 metadata: name: 'Session configuration: Cookies: Set HttpOnly flag to true' shortDescription: Prevent client-side scripts from accessing the cookie by setting the HttpOnly flag to true level: error language: java scwCategory: improper_session_handling:improper_flags_in_cookie_headers enabled: true descriptionFile: descriptions/CookieFlags_SimpleCookie.html tags: security;web;Apache Shiro;OWASP Top 10 search: methodcall: args: 1: type: boolean value: stringified: "false" name: matches: setHttpOnly type: org.apache.shiro.web.servlet.SimpleCookie availableFixes: - name: Set HttpOnly to true actions: - modifyArguments: rewrite: 1: "true"