''' remoteFileInclude.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 ''' from core.data.fuzzer.fuzzer import * import core.controllers.outputManager as om from core.controllers.basePlugin.baseAuditPlugin import baseAuditPlugin import core.data.kb.knowledgeBase as kb import core.data.parsers.urlParser as urlParser from core.controllers.w3afException import w3afException import os, time from core.controllers.daemons.webserver import webserver import core.data.kb.vuln as vuln class remoteFileInclude(baseAuditPlugin): ''' This plugin tests for remote file inclusion bugs. @author: Andres Riancho ( andres.riancho@gmail.com ) ''' def __init__(self): baseAuditPlugin.__init__(self) self._rfiUrl = '' self._rfiResult = '' self._run = True self._listenPort = 8089 self._listenAddress = '' self._wS = None self._usew3afSite = True def _fuzzRequests(self, freq ): ''' Tests an URL for remote file inclusion vulnerabilities. @param freq: A fuzzableRequest ''' if self._run: om.out.debug( 'remoteFileInclude plugin is testing: ' + freq.getURL() ) vulnerable = [] if self._rfiUrl == '' or self._rfiResult == '' or self._listenAddress == '': self._run = False raise w3afException('remoteFileInclude plugin has to be correctly configured to use.') else: # Everything is ok ! , go on with the rfi tests. if not self._usew3afSite: om.out.information('w3af is running a webserver to include remote files on the server.') self._startServer() self._check( freq ) if not self._usew3afSite: self._stopServer() # Wait for threads to finish self._tm.join( self ) def _getRfiUrl( self ): ''' With setOptions the user entered a URL that is the one to be included. This method returns that URL. @return: A string, see above. ''' return self._rfiUrl def _getRfiResult( self ): ''' With setOptions the user entered the expected result of the inclusion. For example, at RfiUrl the user entered : http://foo/toBeIncluded.txt With the following contents : $a = 'mfsa09'; $b = 'a059mu2'; echo $a . $b; The expected result for the remote file inclusion would be the following string: mfsa09a059mu2 This method returns that expected result. @return: A string, see above. ''' return self._rfiResult def _check( self, freq ): ''' Checks a fuzzableRequest for remote file inclusion bugs. @return: None ''' rfiUrlList = [ self._getRfiUrl() ] mutants = createMutants( freq, rfiUrlList ) for mutant in mutants: if self._hasNoBug( 'remoteFileInclude','rfi',mutant.getURL() , mutant.getVar() ): # Only spawn a thread if the mutant has a modified variable # that has no reported bugs in the kb targs = (mutant,) self._tm.startFunction( target=self._sendMutant, args=targs , ownerObj=self ) def _analyzeResult( self, mutant, response ): ''' Analyze results of the _sendMutant method. ''' if response.getBody().find( self._getRfiResult() ) != -1: v = vuln.vuln( mutant ) v.setId( response.id ) v.setDesc( 'Remote file inclusion was found at: ' + response.getURL() + ' . Using method: ' + v.getMethod() + '. The data sent was: ' + str(mutant.getDc()) ) kb.kb.append( self, 'rfi', v ) def end(self): ''' This method is called when the plugin wont be used anymore. ''' self._tm.join( self ) self.printUniq( kb.kb.getData( 'remoteFileInclude', 'rfi' ), 'VAR' ) def _startServer(self): ''' Starts a webserver for including files. ''' # First, generate the php file to be included. rand1 = createRandAlNum( 9 ) rand2 = createRandAlNum( 9 ) filename = createRandAlNum() phpStr = '' # Write the php to the webroot f = open( os.path.join('webroot' + os.path.sep, filename ) , 'w') f.write( phpStr ) f.close() # Define the required parameters self._rfiUrl = 'http://' + self._listenAddress +':' + str(self._listenPort) +'/' + filename self._rfiResult = rand1 + rand2 self._wS = webserver( self._listenAddress, self._listenPort , 'webroot' + os.path.sep) self._wS.start2() time.sleep( 0.2 ) def _stopServer( self ): if self._wS != None: self._wS.stop() # Remove the file filename = self._rfiUrl[self._rfiUrl.rfind(os.path.sep)+1:] os.remove( os.path.join('webroot' + os.path.sep, filename ) ) self._wS = None 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 optionsMap: A dictionary with the options for the plugin. @return: No value is returned. ''' self._rfiUrl = optionsMap['rfiUrl'] self._rfiResult = optionsMap['rfiResult'] self._listenAddress = optionsMap['listenAddress'] self._listenPort = optionsMap['listenPort'] if optionsMap['usew3afSite']: self._usew3afSite = True self._rfiUrl = 'http://w3af.sourceforge.net/w3af/remoteFileInclude.html' self._rfiResult = 'w3af is goood!' self._listenPort = 'notUsed' self._listenAddress = 'notUsed' if self._rfiUrl =='' or self._rfiResult == '' or self._listenAddress == '': raise w3afException('remoteFileInclude plugin has to be correctly configured to use.') 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 will find remote file inclusion vulnerabilities. Five configurable parameters exist: - rfiUrl - rfiResult - listenAddress - listenPort - usew3afSite This plugin will send the value of "rfiUrl" to each injctable parameter, and search for "rfiResult" in the response. There are two ways of running this plugin, one is the most common one, by using the w3af site ( w3af.sf.net ) as the place from where the web application will fetch the remote file. The other way to test for inclusion is to run a webserver on the machine that is sending the tests, this is configured using the "listenAddress" and "listenPort" parameters. Configuring True in "usew3afSite" will automatically configure all the other variables. '''