mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Fix for an Issue #126
This commit is contained in:
parent
1669c6bdb4
commit
cc2a916716
|
@ -80,7 +80,7 @@ def __oneShotUnionUse(expression, unpack=True, limited=False):
|
|||
None)
|
||||
|
||||
# Automatically patching last char trimming cases
|
||||
if kb.chars.stop not in page and kb.chars.stop[:-1] in page:
|
||||
if kb.chars.stop not in (page or "") and kb.chars.stop[:-1] in (page or ""):
|
||||
warnMsg = "automatically patching output having last char trimmed"
|
||||
singleTimeWarnMessage(warnMsg)
|
||||
page = page.replace(kb.chars.stop[:-1], kb.chars.stop)
|
||||
|
|
Loading…
Reference in New Issue
Block a user