How to protect my account from TRACE request attacks?
To protect your account from HTTP TRACE request attacks, add the following rule to your .htaccess file:
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]
To protect your account from HTTP TRACE request attacks, add the following rule to your .htaccess file:
RewriteEngine On
RewriteCond %{REQUEST_METHOD} ^TRACE
RewriteRule .* - [F]