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.