-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BAU: Update Helmet, refactor config and remove deprecated option
This commit: - Updates the version of helmet to match a recent dependabot PR (See #1716) - Removes the Certificate Transparency option from the config. It is now deprecated and not supported by helmet. See below. - Refactors the helmet configuration to use an object rather than a function. I've done this because the function felt verbose Expect-CT deprecated: https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Expect-CT Helmet 7 removes support: helmetjs/helmet#310
- Loading branch information
Showing
4 changed files
with
89 additions
and
103 deletions.
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,76 +1,50 @@ | ||
import helmet from "helmet"; | ||
import e, { Request, Response } from "express"; | ||
// Helmet does not export the config type - This is the way the recommend getting it on GitHub. | ||
export function helmetConfiguration(): Parameters<typeof helmet>[0] { | ||
const helmetConfig: { | ||
permittedCrossDomainPolicies: boolean; | ||
referrerPolicy: boolean; | ||
expectCt: boolean; | ||
frameguard: { action: string }; | ||
hsts: { maxAge: number; includeSubDomains: boolean; preload: boolean }; | ||
dnsPrefetchControl: { allow: boolean }; | ||
contentSecurityPolicy: { | ||
directives: { | ||
defaultSrc: string[]; | ||
objectSrc: string[]; | ||
styleSrc: string[]; | ||
scriptSrc: (string | ((req: e.Request, res: e.Response) => string))[]; | ||
imgSrc: string[]; | ||
connectSrc: string[]; | ||
"form-action"?: string[]; | ||
"frame-ancestors"?: string[]; | ||
}; | ||
}; | ||
} = { | ||
contentSecurityPolicy: { | ||
directives: { | ||
defaultSrc: ["'self'"], | ||
styleSrc: ["'self'"], | ||
scriptSrc: [ | ||
"'self'", | ||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion | ||
(req: Request, res: Response): string => | ||
`'nonce-${res.locals.scriptNonce}'`, | ||
"'sha256-+6WnXIl4mbFTCARd8N3COQmT3bJJmo32N8q8ZSQAIcU='", | ||
"https://*.googletagmanager.com", | ||
"https://www.google-analytics.com", | ||
"https://ssl.google-analytics.com", | ||
], | ||
imgSrc: [ | ||
"'self'", | ||
"data:", | ||
"https://*.google-analytics.com", | ||
"https://*.googletagmanager.com", | ||
"https://www.google-analytics.com", | ||
], | ||
objectSrc: ["'none'"], | ||
connectSrc: [ | ||
"'self'", | ||
"https://*.google-analytics.com", | ||
"https://*.analytics.google.com", | ||
"https://*.googletagmanager.com", | ||
"https://www.google-analytics.com", | ||
], | ||
}, | ||
import { HelmetOptions } from "helmet"; | ||
import { Request, Response } from "express"; | ||
|
||
export const helmetConfiguration: HelmetOptions = { | ||
contentSecurityPolicy: { | ||
directives: { | ||
defaultSrc: ["'self'"], | ||
styleSrc: ["'self'"], | ||
scriptSrc: [ | ||
"'self'", | ||
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion | ||
(req: Request, res: Response): string => | ||
`'nonce-${res.locals.scriptNonce}'`, | ||
"'sha256-+6WnXIl4mbFTCARd8N3COQmT3bJJmo32N8q8ZSQAIcU='", | ||
"https://*.googletagmanager.com", | ||
"https://www.google-analytics.com", | ||
"https://ssl.google-analytics.com", | ||
], | ||
imgSrc: [ | ||
"'self'", | ||
"data:", | ||
"https://*.google-analytics.com", | ||
"https://*.googletagmanager.com", | ||
"https://www.google-analytics.com", | ||
], | ||
objectSrc: ["'none'"], | ||
connectSrc: [ | ||
"'self'", | ||
"https://*.google-analytics.com", | ||
"https://*.analytics.google.com", | ||
"https://*.googletagmanager.com", | ||
"https://www.google-analytics.com", | ||
], | ||
frameAncestors: ["'self'", "https://*.account.gov.uk"], | ||
}, | ||
dnsPrefetchControl: { | ||
allow: false, | ||
}, | ||
frameguard: { | ||
action: "deny", | ||
}, | ||
hsts: { | ||
maxAge: 31536000, // 1 Year | ||
preload: true, | ||
includeSubDomains: true, | ||
}, | ||
referrerPolicy: false, | ||
permittedCrossDomainPolicies: false, | ||
expectCt: false, | ||
}; | ||
helmetConfig.contentSecurityPolicy.directives["frame-ancestors"] = [ | ||
"'self'", | ||
"https://*.account.gov.uk", | ||
]; | ||
return helmetConfig; | ||
} | ||
}, | ||
dnsPrefetchControl: { | ||
allow: false, | ||
}, | ||
frameguard: { | ||
action: "deny", | ||
}, | ||
hsts: { | ||
maxAge: 31536000, // 1 Year | ||
preload: true, | ||
includeSubDomains: true, | ||
}, | ||
referrerPolicy: false, | ||
permittedCrossDomainPolicies: false, | ||
}; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -900,7 +900,12 @@ | |
resolved "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz" | ||
integrity sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw== | ||
|
||
"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": | ||
"@jridgewell/sourcemap-codec@^1.4.10": | ||
version "1.5.0" | ||
resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" | ||
integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== | ||
|
||
"@jridgewell/sourcemap-codec@^1.4.14": | ||
version "1.4.15" | ||
resolved "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz" | ||
integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== | ||
|
@@ -1476,24 +1481,24 @@ | |
integrity sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A== | ||
|
||
"@tsconfig/node10@^1.0.7": | ||
version "1.0.8" | ||
resolved "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.8.tgz" | ||
integrity sha512-6XFfSQmMgq0CFLY1MslA/CPUfhIL919M1rMsa5lP2P097N2Wd1sSX0tx1u4olM16fLNhtHZpRhedZJphNJqmZg== | ||
version "1.0.11" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node10/-/node10-1.0.11.tgz#6ee46400685f130e278128c7b38b7e031ff5b2f2" | ||
integrity sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw== | ||
|
||
"@tsconfig/node12@^1.0.7": | ||
version "1.0.9" | ||
resolved "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.9.tgz" | ||
integrity sha512-/yBMcem+fbvhSREH+s14YJi18sp7J9jpuhYByADT2rypfajMZZN4WQ6zBGgBKp53NKmqI36wFYDb3yaMPurITw== | ||
version "1.0.11" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node12/-/node12-1.0.11.tgz#ee3def1f27d9ed66dac6e46a295cffb0152e058d" | ||
integrity sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag== | ||
|
||
"@tsconfig/node14@^1.0.0": | ||
version "1.0.1" | ||
resolved "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.1.tgz" | ||
integrity sha512-509r2+yARFfHHE7T6Puu2jjkoycftovhXRqW328PDXTVGKihlb1P8Z9mMZH04ebyajfRY7dedfGynlrFHJUQCg== | ||
version "1.0.3" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node14/-/node14-1.0.3.tgz#e4386316284f00b98435bf40f72f75a09dabf6c1" | ||
integrity sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow== | ||
|
||
"@tsconfig/node16@^1.0.2": | ||
version "1.0.2" | ||
resolved "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.2.tgz" | ||
integrity sha512-eZxlbI8GZscaGS7kkc/trHTT5xgrjH3/1n2JDwusC9iahPKWMRvRjJSAN5mCXviuTGQ/lHnhvv8Q1YTpnfz9gA== | ||
version "1.0.4" | ||
resolved "https://registry.yarnpkg.com/@tsconfig/node16/-/node16-1.0.4.tgz#0b92dcc0cc1c81f6f306a381f28e31b1a56536e9" | ||
integrity sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA== | ||
|
||
"@types/body-parser@*": | ||
version "1.19.2" | ||
|
@@ -1890,11 +1895,18 @@ acorn-jsx@^5.3.2: | |
integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== | ||
|
||
acorn-walk@^8.1.1: | ||
version "8.2.0" | ||
resolved "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.2.0.tgz" | ||
integrity sha512-k+iyHEuPgSw6SbuDpGQM+06HQUa04DZ3o+F6CSzXMvvI5KMvnaEqXe+YVe555R9nn6GPt404fos4wcgpw12SDA== | ||
version "8.3.3" | ||
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-8.3.3.tgz#9caeac29eefaa0c41e3d4c65137de4d6f34df43e" | ||
integrity sha512-MxXdReSRhGO7VlFe1bRG/oI7/mdLV9B9JJT0N8vZOhF7gFRR5l3M8W9G8JxmKV+JC5mGqJ0QvqfSOLsCPa4nUw== | ||
dependencies: | ||
acorn "^8.11.0" | ||
|
||
acorn@^8.11.0, acorn@^8.4.1: | ||
version "8.12.1" | ||
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" | ||
integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== | ||
|
||
acorn@^8.4.1, acorn@^8.9.0: | ||
acorn@^8.9.0: | ||
version "8.11.3" | ||
resolved "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz" | ||
integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== | ||
|
@@ -2039,7 +2051,7 @@ archy@^1.0.0: | |
|
||
arg@^4.1.0: | ||
version "4.1.3" | ||
resolved "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz" | ||
resolved "https://registry.yarnpkg.com/arg/-/arg-4.1.3.tgz#269fc7ad5b8e42cb63c896d5666017261c144089" | ||
integrity sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA== | ||
|
||
argparse@^1.0.7: | ||
|
@@ -2692,7 +2704,7 @@ crc32-stream@^4.0.2: | |
|
||
create-require@^1.1.0: | ||
version "1.1.1" | ||
resolved "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz" | ||
resolved "https://registry.yarnpkg.com/create-require/-/create-require-1.1.1.tgz#c1d7e8f1e5f6cfc9ff65f9cd352d37348756c333" | ||
integrity sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ== | ||
|
||
cross-spawn@^7.0.0, cross-spawn@^7.0.2: | ||
|
@@ -2866,7 +2878,7 @@ dezalgo@^1.0.4: | |
|
||
diff@^4.0.1: | ||
version "4.0.2" | ||
resolved "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz" | ||
resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.2.tgz#60f3aecb89d5fae520c11aa19efc2bb982aade7d" | ||
integrity sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A== | ||
|
||
diff@^5.0.0, diff@^5.2.0: | ||
|
@@ -3663,10 +3675,10 @@ he@^1.2.0: | |
resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" | ||
integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== | ||
|
||
helmet@4.6.0: | ||
version "4.6.0" | ||
resolved "https://registry.npmjs.org/helmet/-/helmet-4.6.0.tgz" | ||
integrity sha512-HVqALKZlR95ROkrnesdhbbZJFi/rIVSoNq6f3jA/9u6MIbTsPh3xZwihjeI5+DO/2sOV6HMHooXcEOuwskHpTg== | ||
helmet@7.1.0: | ||
version "7.1.0" | ||
resolved "https://registry.yarnpkg.com/helmet/-/helmet-7.1.0.tgz#287279e00f8a3763d5dccbaf1e5ee39b8c3784ca" | ||
integrity sha512-g+HZqgfbpXdCkme/Cd/mZkV0aV3BZZZSugecH03kl38m/Kmdx8jKjBikpDj2cr+Iynv4KpYEviojNdTJActJAg== | ||
|
||
help-me@^5.0.0: | ||
version "5.0.0" | ||
|
@@ -4193,7 +4205,7 @@ make-dir@^3.0.0, make-dir@^3.0.2: | |
|
||
make-error@^1.1.1: | ||
version "1.3.6" | ||
resolved "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz" | ||
resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" | ||
integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== | ||
|
||
[email protected]: | ||
|
@@ -6100,7 +6112,7 @@ yargs@^17.7.2: | |
|
||
[email protected]: | ||
version "3.1.1" | ||
resolved "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz" | ||
resolved "https://registry.yarnpkg.com/yn/-/yn-3.1.1.tgz#1e87401a09d767c1d5eab26a6e4c185182d2eb50" | ||
integrity sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q== | ||
|
||
yocto-queue@^0.1.0: | ||
|