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 2f69a94 commit 31daefcCopy full SHA for 31daefc
1 file changed
lib/techniques/blind/inference.py
@@ -529,7 +529,7 @@ def blindThread():
529
else:
530
val = getChar(index, asciiTbl)
531
532
- if val is None or (lastChar > 0 and index > lastChar):
+ if val is None:
533
finalValue = partialValue
534
break
535
@@ -548,6 +548,10 @@ def blindThread():
548
finalValue = partialValue[:-INFERENCE_BLANK_BREAK]
549
550
551
+ if (lastChar > 0 and index >= lastChar):
552
+ finalValue = partialValue
553
+ break
554
+
555
except KeyboardInterrupt:
556
abortedFlag = True
557
finally:
0 commit comments