''' detectTransparentProxy.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.info as info from core.controllers.basePlugin.baseDiscoveryPlugin import baseDiscoveryPlugin import socket from core.controllers.w3afException import w3afRunOnce class detectTransparentProxy(baseDiscoveryPlugin): ''' This plugin tries to find out if your ISP has a transparent proxy installed. @author: Andres Riancho ( andres.riancho@gmail.com ) ''' def __init__(self): baseDiscoveryPlugin.__init__(self) self._run = True 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: # I will only run this one time. All calls to detectTransparentProxy return the same url's self._run = False if self._isProxyedConn( fuzzableRequest ): i = info.info() i.setURL( fuzzableRequest.getURL() ) i.setDesc( 'Your ISP seems to have a transparent proxy installed, this can influence w3af results.' ) kb.kb.append( self, 'detectTransparentProxy', i ) om.out.information( i.getDesc() ) else: om.out.information( 'Your ISP has no transparent proxy.' ) return [] def _isProxyedConn( self, fuzzableRequest ): ''' Make a connection to a "random" IP to port 80 and make a request for the URL we are interested in. @return: True if proxy is present. ''' randIPs = [ '1.2.3.4', '5.6.7.8', '9.8.7.6', '1.2.1.2', '1.0.0.1', \ '60.60.60.60', '44.44.44.44', '11.22.33.44', '11.22.33.11', '7.99.7.99',\ '87.78.87.78'] for ip in randIPs: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) try: s.connect( ( ip , 80) ) except: return False else: continue return True 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, OptionList ): ''' 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. ''' 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 tries to detect transparent proxies. The procedure for detecting transparent proxies if simple, I try to connect to a series of IP addresses, to the port 80, if all of them return an opened socket, then it's the proxy server responding. '''