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 5e4e863 commit f4b8a3cCopy full SHA for f4b8a3c
2 files changed
lib/core/settings.py
@@ -43,7 +43,7 @@
43
44
PAYLOAD_DELIMITER = "\x00"
45
CHAR_INFERENCE_MARK = "%c"
46
-PRINTABLE_CHAR_REGEX = r"[^\x00-\x1f\x7e-\xff]"
+PRINTABLE_CHAR_REGEX = r"[^\x00-\x1f\x7f-\xff]"
47
48
# Regular expression used for recognition of generic permission messages
49
PERMISSION_DENIED_REGEX = r"(command|permission|access)\s*(was|is)?\s*denied"
lib/techniques/blind/inference.py
@@ -444,7 +444,8 @@ def blindThread():
444
abortedFlag = True
445
446
finally:
447
- value = [partialValue[_] if _ < len(partialValue) else threadData.shared.value[_] for _ in xrange(length)]
+ value = [_ for _ in partialValue]
448
+ value.extend(_ for _ in threadData.shared.value)
449
450
infoMsg = None
451
0 commit comments