mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Minor bug fixes
This commit is contained in:
@@ -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 "
|
||||
|
||||
Reference in New Issue
Block a user