Skip to content
Snippets Groups Projects
Commit f80cce7e authored by Ben Adida's avatar Ben Adida
Browse files

Added x-frame-options deny to all requests to prevent clickjacking in modern browsers.

parent c19744a6
No related branches found
No related tags found
No related merge requests found
......@@ -122,6 +122,12 @@ exports.setup = function(server) {
next();
});
// prevent framing
server.use(function(req, resp, next) {
resp.setHeader('x-frame-options', 'DENY');
next();
});
// add the actual URL handlers other than static
router(server);
}
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