mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
some minor range to xrange conversion (where safe to do)
This commit is contained in:
@@ -122,7 +122,7 @@ class Enumeration(GenericEnumeration):
|
||||
|
||||
tables = []
|
||||
|
||||
for index in range(int(count)):
|
||||
for index in xrange(int(count)):
|
||||
query = rootQuery.blind.query % (db, index, db)
|
||||
table = inject.getValue(query, inband=False, error=False)
|
||||
kb.hintValue = table
|
||||
|
||||
Reference in New Issue
Block a user