Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ac50f commit 93d35feCopy full SHA for 93d35fe
2 files changed
lib/techniques/error/use.py
@@ -115,7 +115,7 @@ def __oneShotErrorUse(expression, field=None):
115
116
if trimmed:
117
warnMsg = "possible server trimmed output detected (due to its length): "
118
- warnMsg += trimmed
+ warnMsg += safecharencode(trimmed)
119
logger.warn(warnMsg)
120
121
if any(Backend.isDbms(dbms) for dbms in (DBMS.MYSQL, DBMS.MSSQL)):
lib/techniques/union/use.py
@@ -100,7 +100,7 @@ def _(regex):
100
101
102
warnMsg = "possible server trimmed output detected (probably due to its length): "
103
104
105
106
return retVal
0 commit comments