Tell us what’s happening:
Describe your issue in detail here.
Your project link(s)
solution: Glitch :・゚✧
Your browser information:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36
Challenge: Mitigate the Risk of Clickjacking with helmet.frameguard()
Link to the challenge:
First off, look at the log (press the LOGS button at the bottom). The method name is hidePoweredBy
.
For the frameguard
test it seems you do not have the correct version of helmet
installed.
Open the terminal (button at the bottom) and type:
npm rm helmet
Now reinstall it
npm i helmet@3.21.3 --save-exact
If you want to check you can also go to the /_api/app-info
path. The appStack
array should have frameguard
as one of the elements.
"appStack": [
"hidePoweredBy",
"frameguard"
]
system
Closed
3
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.