Blocking .svn and .git Directories on Apache or IIS
By Pete Freitag
One of the issues that our HackMyCF ColdFusion Server Scanner checks for is the existence of public .git/
or .svn/
directories. Exposing these directories to the public could lead to information disclosure, such as your server side source code.
Blocking .svn and .git Directories on Apache
Just add the following to your .htaccess
or httpd.conf
file:
RedirectMatch 404 (?i)\.git RedirectMatch 404 (?i)\.svn
Or if you want to block all hidden directories (probably not a bad idea) you can do this:
RedirectMatch 404 (?i)/\..+
Blocking on IIS
On IIS7+ you can use the awesome request filtering feature to accomplish this, the most appropriate way to do this would probably be with the hiddenSegement
feature. You can do this using the GUI or in your web.config
file as follows:
<configuration> <system.webServer> <security> <requestFiltering> <hiddenSegments> <add segment=".git" /> <add segment=".svn" /> </hiddenSegments> </requestFiltering> </security> </system.webServer> </configuration>
Blocking .svn and .git Directories on Apache or IIS was first published on October 15, 2013.
If you like reading about svn, git, security, apache, iis, or subversion then you might also like:
- Changing the ColdFusion Default ScriptSrc Directory
- ColdFusion wsconfig Hotfix CVE-2009-1876 is for Apache Only
- Remove the Server Header in any IIS Version
- Limiting what htaccess files can do in Apache
Weekly Security Advisories Email
Advisory Week is a new weekly email containing security advisories published by major software vendors (Adobe, Apple, Microsoft, etc).
Comments
Take a look at my blog entry above and notice mine has a slash before the dot.
noticed the redirect matches for git and svn were blocking any file or path containing those strings, so RedirectMatch 404 (?i).*.git.* was 404 redirecting for /digital.gif or /digital/index.htm for example, just FYI.