mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
some minor range to xrange conversion (where safe to do)
This commit is contained in:
@@ -111,10 +111,10 @@ def __setRequestParams():
|
||||
conf.paramDict[PLACE.URI] = {}
|
||||
parts = conf.url.split(URI_INJECTION_MARK_CHAR)
|
||||
|
||||
for i in range(len(parts)-1):
|
||||
for i in xrange(len(parts)-1):
|
||||
result = str()
|
||||
|
||||
for j in range(len(parts)):
|
||||
for j in xrange(len(parts)):
|
||||
result += parts[j]
|
||||
|
||||
if i == j:
|
||||
|
||||
Reference in New Issue
Block a user