mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
some minor range to xrange conversion (where safe to do)
This commit is contained in:
@@ -303,7 +303,7 @@ def attackDumpedTable():
|
||||
results = dictionaryAttack(attack_dict)
|
||||
|
||||
for (user, hash_, password) in results:
|
||||
for i in range(count):
|
||||
for i in xrange(count):
|
||||
for column in columns:
|
||||
if column == colUser or column == '__infos__':
|
||||
continue
|
||||
|
||||
Reference in New Issue
Block a user