An attacker may manipulate the TRACE and TRACK methods to intercept your visitors’ sensitive data. The solution, of course, is disable these methods on your webserver.This is a security vulnerability found in Apache servers.So to disable this just add the below lines.You can add this httpd.conf or .htaccess
How to disable the TRACE and TRACK methods
To disable TRACE and TRACK HTTP methods on your Apache-powered webserver, add the following directives to either your main configuration file or root HTAccess file:
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
These directives disable the TRACE and TRACK methods via the following process:
RewriteEngine on— enables Apache’s rewrite module (this directive is not required if already present in your htaccess file)RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)— targets all TRACE and TRACK request methods for the following ruleRewriteRule .* - [F]— return a403 Forbiddenerror response for all matched conditions (i.e., all TRACE and TRACK methods)
Incoming search terms:
- xampp disable TRACE TRACK (6)
- htaccess trace (5)
- Glassfish disable trace (5)
- htaccess disable cookies on images (3)
- desactivar xampp trace track (3)
- htaccess disable track (2)
- track message from webpage (2)
- deshabilitar metodo http trace/track xampp (2)
- trace track apache xampp (2)
- enabled trace method on apache xampp (2)
- disable leave page warning (2)
- disable track in glassfish (2)
- apache alias tutorial windows (2)
- xampp disable trace and track (2)
- xampp apache disable trace track (2)
- htacces image disable cookie (1)
- how to enable http methods in xampp (1)
- HTTP TRACE GLASsfish 2 disable (1)
- how to disable trace in xampp (1)
- HTTP TRACE xxamp (1)
- IE9 LEAVE THIS PAGE as a message from web page (1)
- iscroll4 selectbox (1)
- jquery css javascript changing cursor (1)
- http trace function in glassfish (1)
- how to off in apache2 trace htaccess (1)
- http trace / track methods disable on sjsas (1)
- http trace / track de apache de xampp (1)
- htaccess trace track (1)
- how to stop track and trace htaccess (1)
- disable xampp trace options (1)
- how to stop track and trace via ht access (1)
- htaccess images disable cookies (1)
- howto disable TRACE / TRACK Methods for glassfish (1)
- jquery mobile disable button (1)
- lampp TRACE TRACK (1)
- leave page disable (1)
- TRACK et TRACE apache protection (1)
- track trace in glassfish (1)
- tuckey urlrewrite disable trace and track (1)
- turn off trace in xampp (1)
You will also be interested in ,
- Speed up wordpress using .htaccess part 1
- How to run or Configure Apache to use PHP as CGI
- Import large files in mysql using PhpMyAdmin
- make_sock: could not bind to address 0.0.0.0:80 windows apache not starting [Solved]
- Set xampp:- Apache Mysql Filezilla Mercury Tomcat as a windows service and get xampp to start automatically on boot up
- Adding apache handlers in cpanel
- ScriptAlias and Alias in httpd.conf at a glance
- IE compatibility view force Internet Explorer to use Internet Explorer 7 rendering mode
- mod_proxy_balancer and installation

