''' fingerGoogle.py Copyright 2006 Andres Riancho 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 from core.controllers.w3afException import w3afException import core.data.kb.knowledgeBase as kb import core.data.kb.vuln as vuln from core.data.searchEngines.google import google as google from core.controllers.basePlugin.baseDiscoveryPlugin import baseDiscoveryPlugin import core.data.parsers.urlParser as urlParser import core.data.parsers.dpCache as dpCache from core.controllers.w3afException import w3afRunOnce class fingerGoogle(baseDiscoveryPlugin): ''' This plugin searches google using google API to get a list of users for a domain. @author: Andres Riancho ( andres.riancho@gmail.com ) ''' ''' Go here to get a API License : http://www.google.com/apis/ Get pygoogle from : http://pygoogle.sourceforge.net/ This plugin wont use proxy/proxy auth/auth/etc settings (for now). Original stand alone version that did not used pygoogle by Sergio Alvarez shadown@gmail.com . @author: Andres Riancho ( andres.riancho@gmail.com ) ''' def __init__(self): baseDiscoveryPlugin.__init__(self) # Internal variables self._run = True self._accounts = [] # User configured self._key = '' self._resultLimit = 300 def discover(self, fuzzableRequest ): ''' @parameter fuzzableRequest: A fuzzableRequest instance that contains (among other things) the URL to test. ''' if not self._run: # This will remove the plugin from the discovery plugins to be runned. raise w3afRunOnce() else: # This plugin will only run one time. self._run = False self._google = google( self._urlOpener, self._key ) self._domain = domain = urlParser.getDomain( fuzzableRequest.getURL() ) self._domainRoot = urlParser.getRootDomain( domain ) results = self._google.getNResults( '@'+ self._domainRoot , self._resultLimit ) for result in results: targs = (result,) self._tm.startFunction( target=self._findAccounts, args=targs, ownerObj=self ) self._tm.join( self ) self.printUniq( kb.kb.getData( 'fingerGoogle', 'mails' ), None ) return [] def _findAccounts(self, googlePage ): ''' Finds mails in google result. @return: A list of valid accounts ''' try: om.out.debug('Searching for mails in: ' + googlePage.URL ) if self._domain == urlParser.getDomain( googlePage.URL ): response = self._urlOpener.GET( googlePage.URL, useCache=True, grepResult=True ) else: response = self._urlOpener.GET( googlePage.URL, useCache=True, grepResult=False ) except KeyboardInterrupt, e: raise e except w3afException, w3: pass except: raise else: dp = dpCache.dpc.getDocumentParserFor( response.getBody(), 'http://'+self._domainRoot+'/' ) for account in dp.getAccounts(): if account not in self._accounts: self._accounts.append( account ) v = vuln.vuln() v.setURL( googlePage.URL ) v.setDesc( 'The mail: '+ account +'@' + self._domainRoot + ' was found in : ' + googlePage.URL ) v['mail'] = account + '@' + self._domainRoot v['users'] = account kb.kb.append( self, 'mails', v ) def getOptionsXML(self): ''' This method returns a XML containing the Options that the plugin has. Using this XML the framework will build a window, a menu, or some other input method to retrieve the info from the user. The XML has to validate against the xml schema file located at : w3af/core/ui/userInterface.dtd @return: XML with the plugin options. ''' return '\ \ \ \ \ ' def setOptions( self, optionsMap ): ''' This method sets all the options that are configured using the user interface generated by the framework using the result of getOptionsXML(). @parameter OptionList: A dictionary with the options for the plugin. @return: No value is returned. ''' self._key = optionsMap['key'] self._resultLimit = optionsMap['resultLimit'] 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 finds mail addresses in google. Two configurable parameters exist: - key - resultLimit This plugin searches google for : "@domain.com", requests all search results and parses them in order to find new mail addresses. '''