Created
December 27, 2018 09:19
-
-
Save alexbilbie/aec21c6f9a1994a7c090cc44bf3a541f to your computer and use it in GitHub Desktop.
Lambda@Edge security headers
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
exports.handler = (event, context, callback) => { | |
//Get contents of response | |
const response = event.Records[0].cf.response; | |
const headers = response.headers; | |
//Set new headers | |
headers['Strict-Transport-Security'] = [{ key: 'Strict-Transport-Security', value: 'max-age= 63072000; includeSubdomains; preload' }]; | |
headers['Content-Security-Policy'] = [{ key: 'Content-Security-Policy', value: "default-src 'none'; img-src 'self'; script-src 'self'; style-src 'self'; object-src 'none'" }]; | |
headers['X-Content-Type-Options'] = [{ key: 'X-Content-Type-Options', value: 'nosniff' }]; | |
headers['X-Frame-Options'] = [{ key: 'X-Frame-Options', value: 'DENY' }]; | |
headers['X-XSS-Protection'] = [{ key: 'X-XSS-Protection', value: '1; mode=block' }]; | |
headers['Referrer-Policy'] = [{ key: 'Referrer-Policy', value: 'same-origin' }]; | |
//Return modified response | |
callback(null, response); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment