Missing Anti-clickjacking Header

Microsoft IIS webserver

Nginx webserver

In your nginx.conf file add:

add-header X-Frame-Options "SAMEORIGIN";

Apache webserver

Make sure that the headers module is loaded: sudo a2enmod headers 

Add the following code to the apache2.conf file:

<IfModule mod_headers.c>
        Header always set X-Frame-Options "SAMEORIGIN"
</IfModule>