From b98f6ac71c7b16bcbdc412c12b623458b4d8c4dd Mon Sep 17 00:00:00 2001 From: Bernardo Damele Date: Thu, 17 Jun 2010 13:27:43 +0000 Subject: [PATCH] Minor layout adjustment --- lib/techniques/blind/inference.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/techniques/blind/inference.py b/lib/techniques/blind/inference.py index 630ddba2b..affa41214 100644 --- a/lib/techniques/blind/inference.py +++ b/lib/techniques/blind/inference.py @@ -219,8 +219,8 @@ def bisection(payload, expression, length=None, charsetType=None, firstChar=None elif minValue == maxChar: # If the original charTbl was [0,..,127] new one # will be [128,..,128*16-1] or from 128 to 2047 - # and instead of making a HUGE list with all - # elements we use here xrange, which is a virtual + # and instead of making a HUGE list with all the + # elements we use a xrange, which is a virtual # list if expand and shiftTable: charTbl = xrange(maxChar + 1, (maxChar + 1) << shiftTable.pop())