From 723ef28ad1516e3d28732996aebdfdaf2224f812 Mon Sep 17 00:00:00 2001 From: Tom <20648924+moT01@users.noreply.github.com> Date: Mon, 11 Feb 2019 14:25:35 -0600 Subject: [PATCH] Update index.md (#34108) --- .../index.md | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard/index.md b/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard/index.md index 0d175ffc8b..c94fd01237 100644 --- a/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard/index.md +++ b/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-clickjacking-with-helmet.frameguard/index.md @@ -3,8 +3,13 @@ title: Mitigate the Risk of Clickjacking with helmet.frameguard() --- ## Mitigate the Risk of Clickjacking with helmet.frameguard() -This is a stub. Help our community expand it. +### Hint -This quick style guide will help ensure your pull request gets accepted. +- You want your `app` to `use` the `helmet.frameguard()` method on each request. +- Don't forget to pass the appropriate configuration into the method. - +### Solution + +- In the `myApp.js` file add `app.use(helmet.frameguard({action: 'deny'}));` under the third instructions. + +**Note:** Be sure to submit the link to the **live demo** of your project.