mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
fix for Bug #183
This commit is contained in:
@@ -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))
|
||||
|
||||
Reference in New Issue
Block a user