Attached is a discovery plugin to identify if git repo meta data is
accessible. With the popularity of git I have been finding this a lot
more lately than svn. With git being distributed and containing the
entire repo it's in the meta data, if certain files / values exist the
repo is cloneable... can be very useful. Would like feedback before it
makes its way towards trunk...
-Adam
'''
findGit.py
Copyright 2010 Adam Baldwin
This file is part of w3af, w3af.sourceforge.net .
w3af is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
w3af is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with w3af; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
'''
import core.controllers.outputManager as om
# options
from core.data.options.option import option
from core.data.options.optionList import optionList
from core.controllers.basePlugin.baseDiscoveryPlugin import baseDiscoveryPlugin
import core.data.parsers.urlParser as urlParser
from core.controllers.w3afException import w3afException
from core.controllers.coreHelpers.fingerprint_404 import is_404
import core.data.kb.knowledgeBase as kb
import core.data.kb.vuln as vuln
import core.data.constants.severity as severity
import re
import StringIO
class findGit(baseDiscoveryPlugin):
'''
Finds GIT repo
@author: Adam Baldwin (adam_bald...@ngenuity-is.com)
'''
def __init__(self):
baseDiscoveryPlugin.__init__(self)
# Internal variables
self._analyzed_dirs = []
self._fuzzable_requests_to_return = []
def discover(self, fuzzableRequest ):
'''
For every directory, fetch a list of files and analyze the response
using regex.
@parameter fuzzableRequest: A fuzzableRequest instance that contains
(among other things) the URL to test.
'''
domain_path = urlParser.getDomainPath( fuzzableRequest.getURL() )
self._fuzzable_requests_to_return = []
if domain_path not in self._analyzed_dirs:
self._analyzed_dirs.append( domain_path )
for git_info in self._get_git_patterns():
git_url = urlParser.urlJoin(domain_path, git_info[0])
targs = (git_url,git_info)
self._tm.startFunction(target=self._check_if_exists,
args=targs, ownerObj=self)
# Wait for all threads to finish
self._tm.join( self )
return self._fuzzable_requests_to_return
def _check_if_exists(self, git_url, git_info):
'''
Check if the file exists.
@parameter git_file_url: The URL to check
'''
try:
response = self._urlOpener.GET( git_url, useCache=True )
except w3afException:
om.out.debug('Failed to GET git file:' + git_url)
else:
if not is_404(response):
# Check pattern
pattern = re.compile(git_info[1])
print git_info[1]
f = StringIO.StringIO(response.getBody())
for line in f:
if pattern.match(line):
v = vuln.vuln()
v.setId( response.id )
v.setName( 'Possible git repo found' )
v.setSeverity(severity.LOW)
v.setURL( response.getURL() )
msg = 'A git repo file was found at: "' + v.getURL() +
'" ; this could'
msg += ' indicate that a git repo is accessible.'
v.setDesc( msg )
kb.kb.append( self, 'GIT', v )
om.out.vulnerability( v.getDesc(),
severity=v.getSeverity() )
fuzzable_requests = self._createFuzzableRequests(
response )
self._fuzzable_requests_to_return.extend(
fuzzable_requests )
def _get_git_patterns( self ):
'''
@return: A list of files used in git and predictable pattherns in them
'''
res = []
res.append( ['.git/info/refs','^[a-f0-9]{40}\s+refs/'])
res.append( ['.git/objects/info/packs','^P pack-[a-f0-9]{40}\.pack'])
res.append( ['.git/packed-refs','^[a-f0-9]{40} refs/'])
res.append( ['.git/refs/heads/master','^[a-f0-9]{40}'])
res.append( ['.git/HEAD','^ref: refs/'])
return res
def getOptions( self ):
'''
@return: A list of option objects for this plugin.
'''
ol = optionList()
return ol
def setOptions( self, OptionList ):
'''
This method sets all the options that are configured using the user
interface
generated by the framework using the result of getOptions().
@parameter OptionList: A dictionary with the options for the plugin.
@return: No value is returned.
'''
pass
def getPluginDeps( self ):
'''
@return: A list with the names of the plugins that should be runned
before the
current one.
'''
return []
def getLongDesc( self ):
'''
@return: A DETAILED description of the plugin functions and features.
'''
return '''
This plugin search for evidence of git metadata in a directory.
For example, if the input is:
- http://host.tld/w3af/index.php
The plugin will perform these requests:
- http://host.tld/w3af/.git/info/refs
- http://host.tld/w3af/.git/packed-refs
- http://host.tld/w3af/.git/objects/info/packs
...
'''
------------------------------------------------------------------------------
This SF.net email is sponsored by Sprint
What will you do first with EVO, the first 4G phone?
Visit sprint.com/first -- http://p.sf.net/sfu/sprint-com-first
_______________________________________________
W3af-develop mailing list
W3af-develop@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/w3af-develop