mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
minor fix
This commit is contained in:
parent
2504f4edb8
commit
78f51fd2e5
1 changed files with 2 additions and 1 deletions
|
|
@ -10,6 +10,7 @@ See the file 'doc/COPYING' for copying permission
|
|||
import re
|
||||
import time
|
||||
|
||||
from extra.safe2bin.safe2bin import safecharencode
|
||||
from lib.core.agent import agent
|
||||
from lib.core.common import Backend
|
||||
from lib.core.common import calculateDeltaSeconds
|
||||
|
|
@ -109,4 +110,4 @@ def dnsUse(payload, expression):
|
|||
warnMsg += "is currently not available for DBMS %s" % Backend.getIdentifiedDbms()
|
||||
singleTimeWarnMessage(warnMsg)
|
||||
|
||||
return retVal
|
||||
return safecharencode(retVal) if kb.safeCharEncode else retVal
|
||||
|
|
|
|||
Loading…
Reference in a new issue