mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-04-25 11:23:44 +03:00
minor update
This commit is contained in:
parent
8bfff4a28e
commit
113ebf5e9d
|
@ -2379,9 +2379,7 @@ def findDynamicContent(firstPage, secondPage):
|
||||||
kb.dynamicMarkings = []
|
kb.dynamicMarkings = []
|
||||||
|
|
||||||
# Removing too small matching blocks
|
# Removing too small matching blocks
|
||||||
i = 0
|
while block in blocks[:]:
|
||||||
while i < len(blocks):
|
|
||||||
block = blocks[i]
|
|
||||||
(_, _, length) = block
|
(_, _, length) = block
|
||||||
|
|
||||||
if length <= DYNAMICITY_MARK_LENGTH:
|
if length <= DYNAMICITY_MARK_LENGTH:
|
||||||
|
|
|
@ -425,7 +425,7 @@ def __bruteProcessVariantA(attack_info, hash_regex, wordlist, suffix, retVal, pr
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
if current in hashes:
|
if current in hashes:
|
||||||
for item in list(attack_info):
|
for item in attack_info[:]:
|
||||||
((user, hash_), _) = item
|
((user, hash_), _) = item
|
||||||
|
|
||||||
if hash_ == current:
|
if hash_ == current:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user