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 0197f8d commit f718425Copy full SHA for f718425
1 file changed
lib/techniques/blind/inference.py
@@ -157,7 +157,7 @@ def getChar(idx, charTbl=asciiTbl):
157
158
if kb.dbms == "SQLite":
159
posValueOld = posValue
160
- if posValue < 256:
+ if posValue < 128:
161
posValue = chr(posValue)
162
else:
163
posValue = unichr(posValue)
@@ -197,7 +197,7 @@ def getChar(idx, charTbl=asciiTbl):
197
if retVal < 128:
198
return chr(retVal)
199
200
- return unichr(retVal) #test value 50089
+ return unichr(retVal)
201
202
def etaProgressUpdate(charTime, index):
203
if len(progressTime) <= ( (length * 3) / 100 ):
0 commit comments