mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor update regarding Issue #129
This commit is contained in:
parent
b9ac50faef
commit
93d35fe522
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue
Block a user