mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
minor fix for cases when the retrieved output is safe encoded (like for --os-shell)
This commit is contained in:
@@ -113,10 +113,10 @@ def __oneShotErrorUse(expression, field):
|
|||||||
else:
|
else:
|
||||||
retVal += output if output else ''
|
retVal += output if output else ''
|
||||||
|
|
||||||
if not (output and len(output) == chunk_length):
|
if output and len(output) >= chunk_length:
|
||||||
break
|
|
||||||
else:
|
|
||||||
offset += chunk_length
|
offset += chunk_length
|
||||||
|
else:
|
||||||
|
break
|
||||||
else:
|
else:
|
||||||
retVal = output
|
retVal = output
|
||||||
break
|
break
|
||||||
|
|||||||
Reference in New Issue
Block a user