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

Skip to content

Commit f718425

Browse files
committed
minor fix
1 parent 0197f8d commit f718425

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/techniques/blind/inference.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ def getChar(idx, charTbl=asciiTbl):
157157

158158
if kb.dbms == "SQLite":
159159
posValueOld = posValue
160-
if posValue < 256:
160+
if posValue < 128:
161161
posValue = chr(posValue)
162162
else:
163163
posValue = unichr(posValue)
@@ -197,7 +197,7 @@ def getChar(idx, charTbl=asciiTbl):
197197
if retVal < 128:
198198
return chr(retVal)
199199
else:
200-
return unichr(retVal) #test value 50089
200+
return unichr(retVal)
201201

202202
def etaProgressUpdate(charTime, index):
203203
if len(progressTime) <= ( (length * 3) / 100 ):

0 commit comments

Comments
 (0)