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 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
|
'''
formAuthBrute.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.dc.form import form as form
from core.controllers.misc.levenshtein import relative_distance
from core.data.fuzzer.fuzzer import createRandAlNum
import core.data.kb.knowledgeBase as kb
import core.data.kb.vuln as vuln
import core.data.constants.severity as severity
class formAuthBrute(baseBruteforcePlugin):
'''
Bruteforce HTML form authentication.
@author: Andres Riancho ( andres.riancho@gmail.com )
'''
def __init__(self):
baseBruteforcePlugin.__init__(self)
# To store failed responses for later comparison
self._login_failed_result_list = []
self._user_field_name = None
self._passwd_field_name = None
def audit(self, freq ):
'''
Tries to bruteforce a form auth. This aint fast!
@param freq: A fuzzableRequest
'''
if self._isLoginForm( freq ):
if freq.getURL() not in self._alreadyTested:
# Save it (we don't want dups!)
self._alreadyTested.append( freq.getURL() )
try:
self._user_field_name, self._passwd_field_name = self._getLoginFieldNames( freq )
except w3afException, w3:
om.out.error( str(w3) )
else:
# Init
self._initBruteforcer( freq.getURL() )
self._idFailedLoginPage( freq )
# Let the user know what we are doing
om.out.information('Found a form login. The action of the form is: "' + freq.getURL() +'".')
if self._user_field_name != None:
om.out.information('The username field to be used is: "' + self._user_field_name + '".')
om.out.information('The password field to be used is: "' + self._passwd_field_name + '".')
om.out.information('Starting form authentication bruteforce on URL: "' + freq.getURL() + '".')
# Work until something is found, or no more passwords are available
more_passwords = True
while not (self._found and self._stopOnFirst) and more_passwords:
combinations = []
for i in xrange( 30 ):
#
# Two different cases, one for user/password forms, the other for
# password only forms.
#
if self._user_field_name != None:
# user/pass form:
try:
combinations.append( self._bruteforcer.getNext() )
except w3afException:
more_passwords = False
break
else:
# password only form:
try:
c = ['dummy-placeholder',self._bruteforcer.getNextPassword()]
combinations.append( c )
except w3afException:
more_passwords = False
break
self._bruteforce( freq, combinations )
# Wait for all _bruteWorker threads to finish.
self._tm.join( self )
# Report that we've finished.
msg = 'Finished bruteforcing "'+ freq.getURL() + '".'
om.out.information( msg )
def _idFailedLoginPage( self, freq ):
'''
Generate TWO different response bodies that are the result of failed logins.
The first result is for logins with filled user and password fields; the second
one is for a filled user and a blank passwd.
'''
data_container = freq.getDc()
data_container = self._true_extra_fields( data_container )
# The first tuple is an invalid username and a password
# The second tuple is an invalid username with a blank password
tests = [ (createRandAlNum( 8 ), createRandAlNum( 8 ) ),
(createRandAlNum( 8 ), '' )]
# The result is going to be stored here
self._login_failed_result_list = []
for user, passwd in tests:
# Setup the data_container
# Remember that we can have password only forms!
if self._user_field_name != None:
data_container[ self._user_field_name ][0] = user
data_container[ self._passwd_field_name ][0] = passwd
freq.setDc( data_container )
response = self._sendMutant( freq , analyze=False, grepResult=False )
body = response.getBody()
body = body.replace(user, '')
body = body.replace(passwd, '')
# Save it
self._login_failed_result_list.append( body )
# Now I perform a self test, before starting with the actual bruteforcing
# The first tuple is an invalid username and a password
# The second tuple is an invalid username with a blank password
tests = [ (createRandAlNum( 8 ), createRandAlNum( 8 ) ),
(createRandAlNum( 8 ), '' )]
for user, passwd in tests:
# Now I do a self test of the result I just created.
# Remember that we can have password only forms!
if self._user_field_name != None:
data_container[ self._user_field_name ][0] = user
data_container[ self._passwd_field_name ][0] = passwd
freq.setDc( data_container )
response = self._sendMutant( freq , analyze=False, grepResult=False )
body = response.getBody()
body = body.replace(user, '')
body = body.replace(passwd, '')
if not self._matchesFailedLogin( body ):
raise w3afException('Failed to generate a response that matches the failed login page.')
def _matchesFailedLogin(self, response_body):
'''
@return: True if the response_body matches the previously created responses that
are stored in self._login_failed_result_list.
'''
# In the ratio, 1 is completely equal.
ratio0 = relative_distance( response_body, self._login_failed_result_list[0])
ratio1 = relative_distance( response_body, self._login_failed_result_list[1])
if ratio0 > 0.65 or ratio1 > 0.65:
return True
else:
# I'm happy! The response_body IS NOT a failed login page.
return False
def _isLoginForm( self, freq ):
'''
@return: True if this fuzzableRequest is a loginForm.
'''
passwd = 0
text = 0
other = 0
data_container = freq.getDc()
if isinstance( data_container , form ):
for parameter_name in data_container:
if data_container.getType( parameter_name ).lower() == 'password':
passwd += 1
elif data_container.getType( parameter_name ).lower() == 'text':
text += 1
else:
other += 1
#
# These are the ones we support
#
if text == 1 and passwd == 1:
return True
elif text == 0 and passwd == 1:
msg = 'Identified a form with a password field and no username field: "'
msg += freq.getURL() + '".'
om.out.information( msg )
return True
#
# These we don't
#
elif passwd == 2:
om.out.information( freq.getURL() + ' is a registration form.')
elif passwd == 3:
om.out.information( freq.getURL() + ' is a password change form.')
return False
def _getLoginFieldNames( self, freq ):
'''
@return: The names of the form fields where to input the user and the password.
Please remember that maybe user_parameter might be None, since we support
password only login forms.
'''
data_container = freq.getDc()
passwd_parameter = None
user_parameter = None
for parameter_name in data_container:
if data_container.getType( parameter_name ).lower() == 'password':
passwd_parameter = parameter_name
elif data_container.getType( parameter_name ).lower() == 'text':
user_parameter = parameter_name
return user_parameter, passwd_parameter
def _true_extra_fields(self, data_container):
'''
Some login forms have "extra" parameters. In some cases I've seen login forms
that have an "I agree with the terms and conditions" checkbox. If w3af does not
set that extra field to "true", even if I have the correct username and password
combination, it won't perform a successful login.
@return: A data_container that has all fields (other than the username and password)
set to 1,
'''
for parameter_name in data_container:
if parameter_name not in [self._user_field_name, self._passwd_field_name]:
data_container[ parameter_name ][0] = 1
return data_container
def _bruteWorker( self, freq, combinations ):
'''
@parameter freq: A fuzzableRequest
@parameter combinations: A list of tuples with (user,pass)
'''
data_container = freq.getDc()
data_container = self._true_extra_fields( data_container )
# Ok, now we start with the real bruteforcing!
for combination in combinations:
# Remember that we can have password only forms!
if self._user_field_name != None:
data_container[ self._user_field_name ][0] = combination[0]
data_container[ self._passwd_field_name ][0] = combination[1]
freq.setDc( data_container )
# This "if" is for multithreading
if not self._found or not self._stopOnFirst:
response = self._sendMutant( freq, analyze=False, grepResult=False )
body = response.getBody()
body = body.replace(combination[0], '')
body = body.replace(combination[1], '')
if not self._matchesFailedLogin( body ):
self._found = True
v = vuln.vuln()
v.setURL( freq.getURL() )
v.setId(response.id)
if self._user_field_name != None:
msg = 'Found authentication credentials to: "'+ freq.getURL()
msg += '". A correct user and password combination is: ' + combination[0]
msg += '/' + combination[1]
else:
# There is no user field!
msg = 'Found authentication credentials to: "'+ freq.getURL()
msg += '". The correct password is: "' + combination[1] + '".'
v.setDesc( msg )
v['user'] = combination[0]
v['pass'] = combination[1]
v['response'] = response
v.setSeverity(severity.HIGH)
v.setName( 'Guessable credentials' )
# Save this for the bruteforce - discovery loop
headers = response.getHeaders()
additionalHeaders = []
for header_name in headers:
if 'cookie' in header_name.lower():
additionalHeaders.append( (header_name , headers[header_name]) )
v['additionalHeaders'] = additionalHeaders
kb.kb.append( self , 'auth' , v )
om.out.vulnerability( v.getDesc(), severity=v.getSeverity() )
break
|