Skip to content
Snippets Groups Projects
Commit 04aafe83 authored by Lloyd Hilaiel's avatar Lloyd Hilaiel
Browse files

be a bit more strinigent in our CSRF token checking per @benadida's recommendation

parent 49e0a849
No related branches found
No related tags found
No related merge requests found
......@@ -188,6 +188,24 @@ exports.setup = function(server) {
server.use(express.bodyParser());
// Check CSRF token early. POST requests are only allowed to
// /wsapi and they always must have a valid csrf token
server.use(function(req, resp, next) {
// only on POSTs
if (req.method == "POST") {
if (!/^\/wsapi/.test(req.url) || // post requests only allowed to /wsapi
req.session === undefined || // there must be a session
typeof req.session.csrf !== 'string' || // the session must have a csrf token
req.body.csrf != req.session.csrf) // and the token must match what is sent in the post body
{
// if any of these things are false, then we'll block the request
logger.warn("CSRF validation failure.");
return httputils.badRequest(resp, "CSRF violation");
}
}
return next();
});
// a tweak to get the content type of host-meta correct
server.use(function(req, resp, next) {
if (req.url === '/.well-known/host-meta') {
......
......@@ -85,19 +85,6 @@ function checkAuthed(req, resp, next) {
}
function setup(app) {
// check CSRF token before routing the request to the proper handler
// (iff the request is to /wsapi AND it's a post)
app.use(function(req, resp, next) {
// only on POSTs to /wsapi
if (req.method == "POST" && /^\/wsapi/.test(req.url) && req.body.csrf != req.session.csrf) {
// error, problem with CSRF
logger.warn("CSRF token mismatch. got:" + req.body.csrf + " wanted:" + req.session.csrf);
httputils.badRequest(resp, "CSRF violation");
} else {
next();
}
});
// return the CSRF token
// IMPORTANT: this should be safe because it's only readable by same-origin code
// but we must be careful that this is never a JSON structure that could be hijacked
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment