mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
minor fix for resuming in multi threading mode
This commit is contained in:
parent
cd07139919
commit
ca6f9acf30
2 changed files with 10 additions and 10 deletions
|
|
@ -55,7 +55,7 @@ class Enumeration(GenericEnumeration):
|
|||
if conf.user:
|
||||
users = conf.user.split(",")
|
||||
query += " WHERE "
|
||||
query += " OR ".join("%s = '%s'" % (condition, user) for user in users)
|
||||
query += " OR ".join("%s = '%s'" % (condition, user) for user in sorted(users))
|
||||
|
||||
values = inject.getValue(query, blind=False)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue