From e3899f74676201c7de74fffa6eff9934aec164de Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Fri, 7 Jan 2011 18:07:18 +0000 Subject: [PATCH] fix of a fix --- lib/utils/hash.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/hash.py b/lib/utils/hash.py index 50d31fa45..352eb8379 100644 --- a/lib/utils/hash.py +++ b/lib/utils/hash.py @@ -259,7 +259,7 @@ def attackDumpedTable(): if value.lower() == hash_.lower(): table[column]['values'][i] += " (%s)" % password - table[column]['length'] = max(table[column]['length'], table[column]['values'][i]) + table[column]['length'] = max(table[column]['length'], len(table[column]['values'][i])) def hashRecognition(value): retVal = None