You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The user has to add httpOnly:true and secure:true properties in express cookie configuration!
HttpOnly HTTP header preventing cookies beeing accessed by scripts.The application used HTTPS secure connections,and cookies are configured to sent only on Secure HTTPS connections be Secure flag! app.use(express.session({ secret: "s3Cur3", cookie: { httpOnly: true, secure: true } }));
The text was updated successfully, but these errors were encountered:
Rule 11
The user has to add
httpOnly:true
andsecure:true
properties in express cookie configuration!HttpOnly
HTTP header preventing cookies beeing accessed by scripts.The application used HTTPS secure connections,and cookies are configured to sent only on Secure HTTPS connections beSecure
flag!app.use(express.session({ secret: "s3Cur3", cookie: { httpOnly: true, secure: true } }));
The text was updated successfully, but these errors were encountered: