Home
/
Website Help
/
Security
/
How to protect my account from TRACE request attacks?

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]

Share This Article