mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
fix for Bug #183
This commit is contained in:
parent
2840f20605
commit
7d3a200ab8
|
@ -249,7 +249,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None
|
|||
if startCharIndex > 0:
|
||||
output = '..' + output[2:]
|
||||
|
||||
if endCharIndex - startCharIndex == conf.progressWidth:
|
||||
if (endCharIndex - startCharIndex == conf.progressWidth) and (endCharIndex < length-1):
|
||||
output = output[:-2] + '..'
|
||||
|
||||
output += '_' * (min(length, conf.progressWidth) - len(output))
|
||||
|
|
Loading…
Reference in New Issue
Block a user