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)
- htaccess disable cookies on images (3)
- xampp apache disable trace track (2)
- deshabilitar metodo http trace/track xampp (2)
- disable leave page warning (2)
- xampp disable trace and track (2)
- Glassfish disable trace (2)
- PHP mysql disable trace (2)
- xampp tracking desable (2)
- jquery mobile disable button (1)
- lampp TRACE TRACK (1)
- método TRACE php apache xampp (1)
- mobile trace script in php (1)
- jquery css javascript changing cursor (1)
- iscroll4 selectbox (1)
- IE9 LEAVE THIS PAGE as a message from web page (1)
- HTTP TRACE xxamp (1)
- HTTP TRACE GLASsfish 2 disable (1)
- htaccess trace track (1)
- htaccess images disable cookies (1)
- htaccess disable track (1)
- mysql disable track (1)
- para que sirve el metodo http track/trace glassfish (1)
- xampp trace track (1)
- XAMPP TRACE (1)
- xampp disable GTRACE (1)
- xampp apache turn off error trace (1)
- xamp server traks disabel (1)
- xammp disable trace requests (1)
- turn off trace in xampp (1)
- tuckey urlrewrite disable trace and track (1)
- track and trace disable internal server error (1)
- trace в htaccess (1)
- stay on this page leave this page submit form (1)
- REQUEST_METHOD} ^(TRACE|TRACK) (1)
- remove leave page alert (1)
- php mysql example: image gallery (blob-storage) forbidden (1)
- xampp/trace (1)
- how to off in apache2 trace htaccess (1)
You will also be interested in ,
- Url rewriting examples using .htaccess
- Custom Error Pages Using .htaccess
- How to install XAMPP
- How to run or Configure Apache to use PHP as CGI
- Apache AddHandler application/x-httpd-php not working?
- How to run jsp in xampp?
- How To Avoid 404 Error Pages Easily and Reliably
- mod_security the Apache Module, The Apache Firewall blocking your website?
- Fix 500 Internal Server Error In WordPress
- mod_proxy_balancer apache load balancing
