Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

395 total results found

Web application vulnerabilities

Strict-Transport-Security Header Not Set

Missing Anti-clickjacking Header

X-Content-Type-Options Header Missing

Absence of Anti-CSRF Tokens

Apache 2.4.x < 2.4.58 Multiple Vulnerabilities

Application Error Disclosure

Big Redirect Detected (Potential Sensitive Information Leak)

Browsable Web Directories

Content Security Policy (CSP) Header Not Set

Cookie with SameSite Attribute None

Cross-Domain JavaScript Source File Inclusion

Cross Site Scripting (DOM Based)

Cross Site Scripting (Reflected)

HSTS Missing From HTTPS Server (RFC 6797)

.htaccess Information Leak

ICMP Timestamp Request Remote Date Disclosure

Information Disclosure - Debug Error Messages

MTA Open Mail Relaying Allowed

NAT-PMP Detection (remote network)

OpenSSH < 9.3 Multiple Vulnerabilities

Microsoft IIS webserver

Strict-Transport-Security Header Not Set

Nginx webserver

Strict-Transport-Security Header Not Set

Apache webserver

Strict-Transport-Security Header Not Set

Microsoft IIS webserver

Missing Anti-clickjacking Header

Nginx webserver

Missing Anti-clickjacking Header

Apache webserver

Missing Anti-clickjacking Header

Microsoft IIS webserver

X-Content-Type-Options Header Missing

Nginx webserver

X-Content-Type-Options Header Missing

Apache webserver

X-Content-Type-Options Header Missing

Plesk

Strict-Transport-Security Header Not Set

Drupal

Strict-Transport-Security Header Not Set

WordPress

Strict-Transport-Security Header Not Set

Joomla

Strict-Transport-Security Header Not Set

Plesk

Missing Anti-clickjacking Header

WordPress

Missing Anti-clickjacking Header

Joomla

Missing Anti-clickjacking Header

Drupal

Missing Anti-clickjacking Header

Plesk

X-Content-Type-Options Header Missing

WordPress

X-Content-Type-Options Header Missing

Joomla

X-Content-Type-Options Header Missing

Remediation Steps

Strict-Transport-Security Header Not Set Microsoft IIS webserver

Follow the steps below to remediate this finding on Microsoft IIS webserver. Start the application named: IIS Manager.Select your websiteOn the right part of the screen, access the option named: HTTP Response Headers.On the top right part of the screen, click ...

Remediation Steps

Strict-Transport-Security Header Not Set Nginx webserver

Follow the steps below to remediate this finding on Nginx webserver. In your nginx.conf file add:add-header Strict-Transport-Security "max-age=31536000; includeSubDomains; preload";

Remediation Steps

Strict-Transport-Security Header Not Set Apache webserver

Follow the steps below to remediate this finding on Apache webserver. Make sure that the headers module is loaded:sudo a2enmod headersAdd the following code to the apache2.conf file:<IfModule mod_headers.c>        Header always set Strict-Transport-Security "m...

Remediation Steps

Missing Anti-clickjacking Header Microsoft IIS webserver

Follow the steps below to remediate this finding on Microsoft IIS webserver. Start the application named: IIS Manager.Select your websiteOn the right part of the screen, access the option named: HTTP Response Headers.On the top right part of the screen, click ...

Remediation Steps

Missing Anti-clickjacking Header Nginx webserver

Follow the steps below to remediate this finding on Nginx webserver. In your nginx.conf file add:add-header X-Frame-Options "SAMEORIGIN";

Remediation Steps

Missing Anti-clickjacking Header Apache webserver

Follow the steps below to remediate this finding on Apache webserver. Make sure that the headers module is loaded:sudo a2enmod headersAdd the following code to the apache2.conf file:<IfModule mod_headers.c>        Header always set X-Frame-Options "SAMEORIGIN"...

Remediation Steps

X-Content-Type-Options Header Missing Microsoft IIS webserver

Follow the steps below to remediate this finding on Microsoft IIS webserver. Start the application named: IIS Manager.Select your websiteOn the right part of the screen, access the option named: HTTP Response Headers.On the top right part of the screen, click ...

Remediation Steps

X-Content-Type-Options Header Missing Nginx webserver

Follow the steps below to remediate this finding on Nginx webserver. In your nginx.conf file add:add-header X-Content-Type-Options "nosniff";

Remediation Steps

X-Content-Type-Options Header Missing Apache webserver

Follow the steps below to remediate this finding on Apache webserver. Make sure that the headers module is loaded:sudo a2enmod headersAdd the following code to the apache2.conf file:<IfModule mod_headers.c>        Header always set X-Content-Type-Options "nosn...

Remediation Steps

Strict-Transport-Security Header Not Set Plesk

Follow the steps below to remediate this finding on Plesk. Log in to the Plesk control panel.Navigate to Domains > your domain > Apache & nginx Settings.Under "Additional nginx directives", add:add_header Strict-Transport-Security "max-age=31536000; includeSub...

Remediation Steps

Strict-Transport-Security Header Not Set Drupal

Follow the steps below to remediate this finding on Drupal. Install and enable the Security Kit (SecKit) module:composer require drupal/seckit drush en seckitNavigate to Admin > Configuration > System > Security Kit.Under the "HTTP Strict Transport Security" s...

Remediation Steps

Strict-Transport-Security Header Not Set WordPress

Follow the steps below to remediate this finding on WordPress. Add the following to your theme's functions.php file or a custom plugin:add_action('send_headers', function() { header('Strict-Transport-Security: max-age=31536000; includeSubDomains; preload'); })...

Remediation Steps

Strict-Transport-Security Header Not Set Joomla

Follow the steps below to remediate this finding on Joomla. Edit the .htaccess file in the Joomla root directory and add:<IfModule mod_headers.c> Header always set Strict-Transport-Security "max-age=31536000; includeSubDomains; preload" </IfModule>Alternativel...

Remediation Steps

Missing Anti-clickjacking Header Plesk

Follow the steps below to remediate this finding on Plesk. Log in to the Plesk control panel.Navigate to Domains > your domain > Apache & nginx Settings.Under "Additional nginx directives", add:add_header X-Frame-Options "SAMEORIGIN" always;Alternatively, unde...

Remediation Steps

Missing Anti-clickjacking Header WordPress

Follow the steps below to remediate this finding on WordPress. Add the following to your theme's functions.php file or a custom plugin:add_action('send_headers', function() { header('X-Frame-Options: SAMEORIGIN'); });Alternatively, if using Apache, add to the ...

Remediation Steps

Missing Anti-clickjacking Header Joomla

Follow the steps below to remediate this finding on Joomla. Edit the .htaccess file in the Joomla root directory and add:<IfModule mod_headers.c> Header always set X-Frame-Options "SAMEORIGIN" </IfModule>Alternatively, install the SecurityHeaders extension fro...

Remediation Steps

Missing Anti-clickjacking Header Drupal

Follow the steps below to remediate this finding on Drupal. Install and enable the Security Kit (SecKit) module:composer require drupal/seckit drush en seckitNavigate to Admin > Configuration > System > Security Kit.Under the "Clickjacking" section, enable X-F...

Remediation Steps

X-Content-Type-Options Header Missing Plesk

Follow the steps below to remediate this finding on Plesk. Log in to the Plesk control panel.Navigate to Domains > your domain > Apache & nginx Settings.Under "Additional nginx directives", add:add_header X-Content-Type-Options "nosniff" always;Alternatively, ...

Remediation Steps

X-Content-Type-Options Header Missing WordPress

Follow the steps below to remediate this finding on WordPress. Add the following to your theme's functions.php file or a custom plugin:add_action('send_headers', function() { header('X-Content-Type-Options: nosniff'); });Alternatively, if using Apache, add to ...

Remediation Steps

X-Content-Type-Options Header Missing Joomla

Follow the steps below to remediate this finding on Joomla. Edit the .htaccess file in the Joomla root directory and add:<IfModule mod_headers.c> Header always set X-Content-Type-Options "nosniff" </IfModule>Alternatively, install the SecurityHeaders extension...