1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162
|
'''
basicAuthBrute.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.basePlugin.baseBruteforcePlugin import baseBruteforcePlugin
from core.controllers.w3afException import w3afException
from core.data.url.xUrllib import xUrllib
import core.data.parsers.urlParser as urlParser
import core.data.kb.knowledgeBase as kb
import core.data.kb.vuln as vuln
import core.data.constants.severity as severity
class basicAuthBrute(baseBruteforcePlugin):
'''
Bruteforce HTTP basic authentication.
@author: Andres Riancho ( andres.riancho@gmail.com )
'''
def __init__(self):
baseBruteforcePlugin.__init__(self)
def audit(self, freq ):
'''
Tries to bruteforce a basic HTTP auth. This is not fast!
@param freq: A fuzzableRequest
'''
auth_url_list = [ urlParser.getDomainPath( i.getURL() ) for i in kb.kb.getData( 'httpAuthDetect', 'auth' )]
domain_path = urlParser.getDomainPath( freq.getURL() )
if domain_path in auth_url_list:
if domain_path not in self._alreadyTested:
# Save it (we don't want dups!)
self._alreadyTested.append( domain_path )
# Let the user know what we are doing
msg = 'Starting basic authentication bruteforce on URL: "' + domain_path + '".'
om.out.information( msg )
self._initBruteforcer( domain_path )
while not self._found or not self._stopOnFirst:
combinations = []
for i in xrange( 30 ):
try:
combinations.append( self._bruteforcer.getNext() )
except:
om.out.information('No more user/password combinations available.')
return
# wraps around bruteWorker
# the wrapper starts a new thread
self._bruteforce( domain_path, combinations )
def _bruteWorker( self, url, combinations ):
'''
@parameter url: A string representation of an URL
@parameter combinations: A list of tuples with (user,pass)
'''
# get instance outside loop...
uriOpener = xUrllib()
uriOpener.setGrepPlugins( [] )
# So uriOpener._init aint called
uriOpener._cacheOpener = ''
for combination in combinations:
user = combination[0]
passwd = combination[1]
om.out.debug('[basicAuthBrute] Testing ' + user + '/' + passwd)
uriOpener.settings.setBasicAuth( url, user, passwd )
# The next line replaces the uriOpener opener with a new one that has
# the basic auth settings configured
#IMPORTANT: This line also calls __init__ on all urllib2 handlers, to have in mind:
# the localCache clears the cache when you call init...
# this creates problem with multithreading
uriOpener.settings.buildOpeners()
uriOpener._opener = uriOpener.settings.getCustomUrlopen()
# This "if" is for multithreading
if not self._found or not self._stopOnFirst:
try:
response = uriOpener.GET( url, useCache=False, grepResult=False )
except w3afException, w3:
msg = 'Exception while bruteforcing basic authentication, error message: '
msg += str(w3)
om.out.debug( msg )
else:
# GET was OK
if response.getCode() == 200:
self._found = True
v = vuln.vuln()
v.setURL( url )
v.setId(response.id)
v.setDesc( 'Found authentication credentials to: "'+ url +
'". A correct user and password combination is: ' + user + '/' + passwd)
v['user'] = user
v['pass'] = passwd
v['response'] = response
v.setSeverity(severity.HIGH)
v.setName( 'Guessable credentials' )
kb.kb.append( self , 'auth' , v )
om.out.vulnerability( v.getDesc(), severity=v.getSeverity() )
break
def getLongDesc( self ):
'''
@return: A DETAILED description of the plugin functions and features.
'''
return '''
This plugin bruteforces basic authentication logins.
Nine configurable parameters exist:
- usersFile
- stopOnFirst
- passwdFile
- passEqUser
- useLeetPasswd
- useMailUsers
- useSvnUsers
- useMails
- useProfiling
- profilingNumber
This plugin will take users from the file pointed by "usersFile", mail users found on the site ( if "useMailUsers" is
set to True ), mails found on the site ( if "useMails" is set to True ), and svn users found on the site ( if "useSvnUsers"
is set to True ).
This plugin will take passwords from the file pointed by "passwdFile" and the result of the password profiling plugin
( if "useProfiling" is set to True). The profilingNumber sets the number of results from the password profiling plugin
to use in the password field.
The "stopOnFirst" parameter indicates if the bruteforce will stop when finding the first valid credentials or not.
'''
|