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

OpenSSH < 9.6 Multiple Vulnerabilities

OpenSSL 3.0.0 < 3.0.12 Vulnerability

OpenSSL 3.0.0 < 3.0.13 Vulnerability

Path Traversal

Server Leaks Information via "X-Powered-By" HTTP Response Header Field(s)

Server Leaks Version Information via "Server" HTTP Response Header Field

SMB Signing not required

SQL Injection

SQL Injection - MySQL

SSH Server CBC Mode Ciphers Enabled

SSH Terrapin Prefix Truncation Weakness (CVE-2023-48795)

SSH Weak Key Exchange Algorithms Enabled

SSL Anonymous Cipher Suites Supported

SSL Certificate Cannot Be Trusted

SSL Certificate Expiry

SSL Self-Signed Certificate

Sub Resource Integrity Attribute Missing

Timestamp Disclosure - Unix

TLS Version 1.0 Protocol Detection

TLS Version 1.1 Protocol Deprecated

Drupal

X-Content-Type-Options Header Missing

WordPress

Absence of Anti-CSRF Tokens

Joomla

Absence of Anti-CSRF Tokens

Drupal

Absence of Anti-CSRF Tokens

Generic / Developer guidance

Absence of Anti-CSRF Tokens

Linux (Debian/Ubuntu)

Apache 2.4.x < 2.4.58 Multiple Vulnerab...

Linux (RHEL/CentOS/AlmaLinux)

Apache 2.4.x < 2.4.58 Multiple Vulnerab...

Windows

Apache 2.4.x < 2.4.58 Multiple Vulnerab...

Microsoft IIS webserver

Application Error Disclosure

Nginx webserver

Application Error Disclosure

Apache webserver

Application Error Disclosure

WordPress

Application Error Disclosure

Joomla

Application Error Disclosure

Drupal

Application Error Disclosure

Generic / Developer guidance

Big Redirect Detected (Potential Sensit...

WordPress

Big Redirect Detected (Potential Sensit...

Joomla

Big Redirect Detected (Potential Sensit...

Drupal

Big Redirect Detected (Potential Sensit...

Microsoft IIS webserver

Browsable Web Directories

Nginx webserver

Browsable Web Directories

Remediation Steps

X-Content-Type-Options Header Missing 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 "Content Type Sniffing" section, e...

Remediation Steps

Absence of Anti-CSRF Tokens WordPress

Follow the steps below to remediate this finding on WordPress. Ensure all forms use WordPress nonces for CSRF protection.In form output:wp_nonce_field('my_action', 'my_nonce_field');In form processing:if (!isset($_POST['my_nonce_field']) || !wp_verify_nonce($_...

Remediation Steps

Absence of Anti-CSRF Tokens Joomla

Follow the steps below to remediate this finding on Joomla. Joomla's Form API includes CSRF tokens automatically via JSession::checkToken().In your form template, add:<?php echo JHtml::_('form.token'); ?>In your controller, validate:JSession::checkToken() or j...

Remediation Steps

Absence of Anti-CSRF Tokens Drupal

Follow the steps below to remediate this finding on Drupal. Drupal's Form API adds CSRF tokens automatically to all forms built with the Form API.Ensure all custom forms extend \Drupal\Core\Form\FormBase and use the standard buildForm/submitForm pattern.For cu...

Remediation Steps

Absence of Anti-CSRF Tokens Generic / Developer guidance

Follow the steps below to remediate this finding on Generic / Developer guidance. Add a per-session, per-form CSRF token to every state-changing HTML form and validate it server-side.Generation example (PHP):$token = bin2hex(random_bytes(32)); $_SESSION['csrf_...

Remediation Steps

Apache 2.4.x < 2.4.58 Multiple Vulnerab... Linux (Debian/Ubuntu)

Follow the steps below to remediate this finding on Linux (Debian/Ubuntu). Update Apache to the latest available version: sudo apt update sudo apt upgrade apache2 Verify the installed version: apache2 -v Restart Apache after upgrading: s...

Remediation Steps

Apache 2.4.x < 2.4.58 Multiple Vulnerab... Linux (RHEL/CentOS/AlmaLinux)

Follow the steps below to remediate this finding on Linux (RHEL/CentOS/AlmaLinux). Update Apache via the package manager: sudo yum update httpd # RHEL/CentOS 7 sudo dnf update httpd # RHEL/CentOS 8+ / AlmaLinux Verify the installed ve...

Remediation Steps

Apache 2.4.x < 2.4.58 Multiple Vulnerab... Windows

Follow the steps below to remediate this finding on Windows. Download the latest Apache binary from the Apache Lounge (https://www.apachelounge.com/download/) or the official Apache website.Stop the Apache service:net stop Apache2.4Back up your configuration f...

Remediation Steps

Application Error Disclosure Microsoft IIS webserver

Follow the steps below to remediate this finding on Microsoft IIS webserver. Configure custom error pages so that detailed error information is never sent to clients.Open IIS Manager > select your site > Error Pages.For each HTTP error code, set the response t...

Remediation Steps

Application Error Disclosure Nginx webserver

Follow the steps below to remediate this finding on Nginx webserver. In your nginx.conf or server block, add generic error page directives:error_page 500 502 503 504 /50x.html; location = /50x.html { root /usr/share/nginx/html; internal; }For PHP-FPM, ensure d...

Remediation Steps

Application Error Disclosure Apache webserver

Follow the steps below to remediate this finding on Apache webserver. In your Apache configuration or .htaccess file, configure custom error pages:ErrorDocument 500 /errors/500.html ErrorDocument 403 /errors/403.html ErrorDocument 404 /errors/404.htmlIn php.in...

Remediation Steps

Application Error Disclosure WordPress

Follow the steps below to remediate this finding on WordPress. In wp-config.php, disable debug output:define('WP_DEBUG', false); define('WP_DEBUG_DISPLAY', false); define('WP_DEBUG_LOG', false);If the site previously had WP_DEBUG enabled, ensure the debug.log ...

Remediation Steps

Application Error Disclosure Joomla

Follow the steps below to remediate this finding on Joomla. In the Joomla Administrator panel, go to System > Global Configuration > Server tab.Set Error Reporting to None.Also set Force HTTPS to Entire site if not already done.Click Save.

Remediation Steps

Application Error Disclosure Drupal

Follow the steps below to remediate this finding on Drupal. In the Drupal Administrator panel, go to Administration > Configuration > Development > Logging and errors.Set "Error messages to display" to None.Ensure display_errors is disabled in php.ini on the s...

Remediation Steps

Big Redirect Detected (Potential Sensit... Generic / Developer guidance

Follow the steps below to remediate this finding on Generic / Developer guidance. Redirects that carry large response bodies may expose sensitive data in the Location header or response body before the browser follows the redirect.Audit all redirect responses ...

Remediation Steps

Big Redirect Detected (Potential Sensit... WordPress

Follow the steps below to remediate this finding on WordPress. Review plugins that perform redirects (e.g., redirect managers, social login plugins) and verify they do not append sensitive query parameters to the Location URL.Add the following to your theme's ...

Remediation Steps

Big Redirect Detected (Potential Sensit... Joomla

Follow the steps below to remediate this finding on Joomla. Review Joomla's Redirect Manager (Components > Redirect) and ensure no sensitive GET parameters are preserved in destination URLs.In custom components, always call $app->redirect($url); followed by ex...

Remediation Steps

Big Redirect Detected (Potential Sensit... Drupal

Follow the steps below to remediate this finding on Drupal. Audit any custom redirect logic in hook_form_submit or EventSubscriber implementations.Use the Drupal redirect service:$response = new \Symfony\Component\HttpFoundation\RedirectResponse($url); $respon...

Remediation Steps

Browsable Web Directories Microsoft IIS webserver

Follow the steps below to remediate this finding on Microsoft IIS webserver. Open IIS Manager and select the site or virtual directory.Double-click Directory Browsing in the Features pane.In the Actions pane on the right, click Disable.Alternatively, in web.co...

Remediation Steps

Browsable Web Directories Nginx webserver

Follow the steps below to remediate this finding on Nginx webserver. Ensure the autoindex directive is disabled (it is off by default).In your server or location block, explicitly set:autoindex off;Reload Nginx:sudo systemctl reload nginx