mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #2601
This commit is contained in:
parent
614f290217
commit
ba369b73d3
4 changed files with 6 additions and 6 deletions
|
|
@ -393,7 +393,7 @@ class Users:
|
|||
user = None
|
||||
privileges = set()
|
||||
|
||||
for count in xrange(0, len(value)):
|
||||
for count in xrange(0, len(value or [])):
|
||||
# The first column is always the username
|
||||
if count == 0:
|
||||
user = value[count]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue