From 48c0f4f053357c9a97dfbe34eac0265321f88489 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 28 May 2010 10:17:03 +0000 Subject: [PATCH] minor fix --- lib/techniques/blind/inference.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/techniques/blind/inference.py b/lib/techniques/blind/inference.py index df014cf1f..e26ff3ded 100644 --- a/lib/techniques/blind/inference.py +++ b/lib/techniques/blind/inference.py @@ -420,7 +420,7 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None # If we had no luck with singleValue and common charset, # use the returned other charset if not val: - val = getChar(index, otherCharset) + val = getChar(index, otherCharset, otherCharset == asciiTbl) else: val = getChar(index, asciiTbl)