mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-18 04:20:35 +03:00
Fixes #1441
This commit is contained in:
parent
5ce4d4d2ec
commit
a1a7161fab
|
@ -128,9 +128,16 @@ def _comparison(page, headers, code, getRatioValue, pageLength):
|
||||||
count += 1
|
count += 1
|
||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
if count:
|
if count:
|
||||||
seq1 = seq1[count:]
|
try:
|
||||||
seq2 = seq2[count:]
|
_seq1 = seq1[count:]
|
||||||
|
_seq2 = seq2[count:]
|
||||||
|
except MemoryError:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
|
seq1 = _seq1
|
||||||
|
seq2 = _seq2
|
||||||
|
|
||||||
while True:
|
while True:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user