mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Proper return from error-based technique enumeration
This commit is contained in:
@@ -267,9 +267,6 @@ class Enumeration:
|
||||
if parsedUser:
|
||||
user = parsedUser.groups()[0]
|
||||
|
||||
if isinstance(user, list):
|
||||
user = user[0]
|
||||
|
||||
if not user or user in retrievedUsers:
|
||||
continue
|
||||
|
||||
@@ -539,9 +536,6 @@ class Enumeration:
|
||||
if Backend.getIdentifiedDbms() == DBMS.MYSQL and kb.data.has_information_schema:
|
||||
unescapedUser = unescaper.unescape(user, quote=False)
|
||||
|
||||
if isinstance(user, list):
|
||||
user = user[0]
|
||||
|
||||
if not user or user in retrievedUsers:
|
||||
continue
|
||||
|
||||
|
||||
Reference in New Issue
Block a user