This is a header designed to indicate to web browser what it should do with its built-in XSS protection filters. This header takes 3 simple values:

This setting is useful when you don’t know what the user may have set their browser’s XSS filter setting to. The last option is considered best practice, but whatever you choose based on your use-case, don’t rely on the setting on the user’s end. Configure the setting you want using this header.

To use this setting in Nginx, we’ll add this:

add_header X-XSS-Protection "1; mode=block";

Resources