From d467b40ff6d810116cc24d82a5edd636dd8602d4 Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Wed, 26 Oct 2011 10:54:43 +0000 Subject: [PATCH] minor 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 b5e49cc74..a269fb156 100644 --- a/lib/utils/hash.py +++ b/lib/utils/hash.py @@ -355,7 +355,7 @@ def __bruteProcessVariantA(attack_info, hash_regex, wordlist, suffix, retVal, pr try: current = __functions__[hash_regex](password = word, uppercase = False) - for item in attack_info: + for item in list(attack_info): ((user, hash_), _) = item count += 1