diff --git a/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-cross-site-scripting-xss-attacks-with-helmet.xssfilter/index.md b/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-cross-site-scripting-xss-attacks-with-helmet.xssfilter/index.md index 8d5cfe1e05..1d8881e03b 100644 --- a/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-cross-site-scripting-xss-attacks-with-helmet.xssfilter/index.md +++ b/guide/english/certifications/information-security-and-quality-assurance/information-security-with-helmetjs/mitigate-the-risk-of-cross-site-scripting-xss-attacks-with-helmet.xssfilter/index.md @@ -3,8 +3,12 @@ title: Mitigate the Risk of Cross Site Scripting (XSS) Attacks with helmet.xssFi --- ## Mitigate the Risk of Cross Site Scripting (XSS) Attacks with helmet.xssFilter() -This is a stub. Help our community expand it. +### Hint -This quick style guide will help ensure your pull request gets accepted. +- You want to use helmet's `xssFilter()` method on each request. - +### Solution + +- In the `myApp.js` file, add `app.use(helmet.xssFilter({}));` under the fourth instruction. + +**Note:** Be sure to submit the link to the **live demo** of your project.