When a cookie is configured with the HttpOnly
attribute set to true, the browser guaranties that no client-side script will
be able to read it. In most cases, when a cookie is created, the default value of HttpOnly
is false and it’s up to the developer
to decide whether or not the content of the cookie can be read by the client-side script. As a majority of Cross-Site Scripting (XSS) attacks target
the theft of session-cookies, the HttpOnly
attribute can help to reduce their impact as it won’t be possible to exploit the XSS
vulnerability to steal session-cookies.
Ask Yourself Whether
- the cookie is sensitive, used to authenticate the user, for instance a session-cookie
- the
HttpOnly
attribute offer an additional protection (not the case for an XSRF-TOKEN cookie / CSRF token for example)
There is a risk if you answered yes to any of those questions.
Recommended Secure Coding Practices
- By default the
HttpOnly
flag should be set to true for most of the cookies and it’s mandatory for session /
sensitive-security cookies.
Sensitive Code Example
cookie-session module:
let session = cookieSession({
httpOnly: false,// Sensitive
}); // Sensitive
express-session module:
const express = require('express'),
const session = require('express-session'),
let app = express()
app.use(session({
cookie:
{
httpOnly: false // Sensitive
}
})),
cookies module:
let cookies = new Cookies(req, res, { keys: keys });
cookies.set('LastVisit', new Date().toISOString(), {
httpOnly: false // Sensitive
}); // Sensitive
csurf module:
const cookieParser = require('cookie-parser');
const csrf = require('csurf');
const express = require('express');
let csrfProtection = csrf({ cookie: { httpOnly: false }}); // Sensitive
Compliant Solution
cookie-session module:
let session = cookieSession({
httpOnly: true,// Compliant
}); // Compliant
express-session module:
const express = require('express');
const session = require('express-session');
let app = express();
app.use(session({
cookie:
{
httpOnly: true // Compliant
}
}));
cookies module:
let cookies = new Cookies(req, res, { keys: keys });
cookies.set('LastVisit', new Date().toISOString(), {
httpOnly: true // Compliant
}); // Compliant
csurf module:
const cookieParser = require('cookie-parser');
const csrf = require('csurf');
const express = require('express');
let csrfProtection = csrf({ cookie: { httpOnly: true }}); // Compliant
See