mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
Trivial case update
This commit is contained in:
parent
4cc13d3c1e
commit
b9151ca5c5
6 changed files with 12 additions and 12 deletions
|
|
@ -34,7 +34,7 @@ from lib.core.common import wasLastResponseHTTPError
|
|||
from lib.core.compat import xrange
|
||||
from lib.core.convert import decodeHex
|
||||
from lib.core.convert import getUnicode
|
||||
from lib.core.convert import htmlunescape
|
||||
from lib.core.convert import htmlUnescape
|
||||
from lib.core.data import conf
|
||||
from lib.core.data import kb
|
||||
from lib.core.data import logger
|
||||
|
|
@ -204,7 +204,7 @@ def _oneShotErrorUse(expression, field=None, chunkTest=False):
|
|||
retVal = decodeDbmsHexValue(retVal) if conf.hexConvert else retVal
|
||||
|
||||
if isinstance(retVal, six.string_types):
|
||||
retVal = htmlunescape(retVal).replace("<br>", "\n")
|
||||
retVal = htmlUnescape(retVal).replace("<br>", "\n")
|
||||
|
||||
retVal = _errorReplaceChars(retVal)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue