Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@ Changed

Contributed by @cognifloyd

* Changed the `X-XSS-Protection` HTTP header from `1; mode=block` to `0` in the `conf/nginx/st2.conf` to align with the OWASP security standards. #5298

Contributed by @LiamRiddell

3.7.0 - May 05, 2022
--------------------

Expand Down
2 changes: 1 addition & 1 deletion conf/nginx/st2.conf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ server {
add_header X-Content-Type-Options nosniff;
add_header X-Frame-Options DENY always;
add_header Strict-Transport-Security "max-age=3153600;includeSubDomains";
add_header X-XSS-Protection "1; mode=block";
add_header X-XSS-Protection "0";

location @apiError {
add_header Content-Type application/json always;
Expand Down