We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2504f4e commit 78f51fdCopy full SHA for 78f51fd
1 file changed
lib/techniques/dns/use.py
@@ -10,6 +10,7 @@
10
import re
11
import time
12
13
+from extra.safe2bin.safe2bin import safecharencode
14
from lib.core.agent import agent
15
from lib.core.common import Backend
16
from lib.core.common import calculateDeltaSeconds
@@ -109,4 +110,4 @@ def dnsUse(payload, expression):
109
110
warnMsg += "is currently not available for DBMS %s" % Backend.getIdentifiedDbms()
111
singleTimeWarnMessage(warnMsg)
112
- return retVal
113
+ return safecharencode(retVal) if kb.safeCharEncode else retVal
0 commit comments