mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Minor update regarding Issue #129
This commit is contained in:
@@ -115,7 +115,7 @@ def __oneShotErrorUse(expression, field=None):
|
|||||||
|
|
||||||
if trimmed:
|
if trimmed:
|
||||||
warnMsg = "possible server trimmed output detected (due to its length): "
|
warnMsg = "possible server trimmed output detected (due to its length): "
|
||||||
warnMsg += trimmed
|
warnMsg += safecharencode(trimmed)
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
if any(Backend.isDbms(dbms) for dbms in (DBMS.MYSQL, DBMS.MSSQL)):
|
if any(Backend.isDbms(dbms) for dbms in (DBMS.MYSQL, DBMS.MSSQL)):
|
||||||
|
|||||||
@@ -100,7 +100,7 @@ def __oneShotUnionUse(expression, unpack=True, limited=False):
|
|||||||
|
|
||||||
if trimmed:
|
if trimmed:
|
||||||
warnMsg = "possible server trimmed output detected (probably due to its length): "
|
warnMsg = "possible server trimmed output detected (probably due to its length): "
|
||||||
warnMsg += trimmed
|
warnMsg += safecharencode(trimmed)
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
||||||
return retVal
|
return retVal
|
||||||
|
|||||||
Reference in New Issue
Block a user