mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Minor bug fixes
This commit is contained in:
parent
2a0b03e5c6
commit
9fc0bedea8
|
@ -399,7 +399,7 @@ Bedirhan Urgun <bedirhanurgun@gmail.com>
|
|||
benchmark project, OWASP SQLiBench, http://code.google.com/p/sqlibench
|
||||
|
||||
Kyprianos Vasilopoulos <kyprianos.vasilopoulos@gmail.com>
|
||||
for reporting an unhandled connection exception
|
||||
for reporting a couple of minor bugs
|
||||
|
||||
Carlos Gabriel Vergara <carlosgabrielvergara@gmail.com>
|
||||
for suggesting couple of good features
|
||||
|
|
|
@ -267,7 +267,10 @@ class Enumeration:
|
|||
if parsedUser:
|
||||
user = parsedUser.groups()[0]
|
||||
|
||||
if user in retrievedUsers:
|
||||
if isinstance(user, list):
|
||||
user = user[0]
|
||||
|
||||
if not user or user in retrievedUsers:
|
||||
continue
|
||||
|
||||
infoMsg = "fetching number of password hashes "
|
||||
|
@ -536,7 +539,10 @@ class Enumeration:
|
|||
if Backend.getIdentifiedDbms() == DBMS.MYSQL and kb.data.has_information_schema:
|
||||
unescapedUser = unescaper.unescape(user, quote=False)
|
||||
|
||||
if user in retrievedUsers:
|
||||
if isinstance(user, list):
|
||||
user = user[0]
|
||||
|
||||
if not user or user in retrievedUsers:
|
||||
continue
|
||||
|
||||
infoMsg = "fetching number of privileges "
|
||||
|
|
Loading…
Reference in New Issue
Block a user