Security warnings: missing 'Secure' and 'HttpOnly' cookie attribute #3608
-
Hello! I scanned my network searching for security reports, then I received the following relatory, with 2 security vulnerabilities from TeamPass host: I already implemented this; set When I inspect the TeamPass page, I can see that the teampass_session cookie is set with HttpOnly and Secure True, but there are other cookies that aren't. Someone know how to fix this? Am I doing something wrong? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
@jussara-ti |
Beta Was this translation helpful? Give feedback.
-
About the security warnings, they were more about the web server than Teampass itself. I corrected them adding the following line in apache configuration file (apache2.conf): |
Beta Was this translation helpful? Give feedback.
About the security warnings, they were more about the web server than Teampass itself. I corrected them adding the following line in apache configuration file (apache2.conf):
Header edit Set-Cookie ^(.*)$ $1;HttpOnly;Secure
With this, all cookies sent by the http server will have the "HttpOnly" and "Secure" atributes