Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 93d35fe

Browse files
committed
Minor update regarding Issue #129
1 parent b9ac50f commit 93d35fe

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/techniques/error/use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def __oneShotErrorUse(expression, field=None):
115115

116116
if trimmed:
117117
warnMsg = "possible server trimmed output detected (due to its length): "
118-
warnMsg += trimmed
118+
warnMsg += safecharencode(trimmed)
119119
logger.warn(warnMsg)
120120

121121
if any(Backend.isDbms(dbms) for dbms in (DBMS.MYSQL, DBMS.MSSQL)):

lib/techniques/union/use.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ def _(regex):
100100

101101
if trimmed:
102102
warnMsg = "possible server trimmed output detected (probably due to its length): "
103-
warnMsg += trimmed
103+
warnMsg += safecharencode(trimmed)
104104
logger.warn(warnMsg)
105105

106106
return retVal

0 commit comments

Comments
 (0)