mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-18 04:20:35 +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
|
benchmark project, OWASP SQLiBench, http://code.google.com/p/sqlibench
|
||||||
|
|
||||||
Kyprianos Vasilopoulos <kyprianos.vasilopoulos@gmail.com>
|
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>
|
Carlos Gabriel Vergara <carlosgabrielvergara@gmail.com>
|
||||||
for suggesting couple of good features
|
for suggesting couple of good features
|
||||||
|
|
|
@ -267,7 +267,10 @@ class Enumeration:
|
||||||
if parsedUser:
|
if parsedUser:
|
||||||
user = parsedUser.groups()[0]
|
user = parsedUser.groups()[0]
|
||||||
|
|
||||||
if user in retrievedUsers:
|
if isinstance(user, list):
|
||||||
|
user = user[0]
|
||||||
|
|
||||||
|
if not user or user in retrievedUsers:
|
||||||
continue
|
continue
|
||||||
|
|
||||||
infoMsg = "fetching number of password hashes "
|
infoMsg = "fetching number of password hashes "
|
||||||
|
@ -536,7 +539,10 @@ class Enumeration:
|
||||||
if Backend.getIdentifiedDbms() == DBMS.MYSQL and kb.data.has_information_schema:
|
if Backend.getIdentifiedDbms() == DBMS.MYSQL and kb.data.has_information_schema:
|
||||||
unescapedUser = unescaper.unescape(user, quote=False)
|
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
|
continue
|
||||||
|
|
||||||
infoMsg = "fetching number of privileges "
|
infoMsg = "fetching number of privileges "
|
||||||
|
|
Loading…
Reference in New Issue
Block a user