From 6346513819cabf980be1facd158d7a967ec06490 Mon Sep 17 00:00:00 2001 From: bandrel Date: Thu, 25 Oct 2018 17:54:45 -0400 Subject: [PATCH] corrected logic if 99 is chosen for rules in quickcrack --- hate_crack.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hate_crack.py b/hate_crack.py index 64d7f8f..0a07c08 100755 --- a/hate_crack.py +++ b/hate_crack.py @@ -917,7 +917,8 @@ def quick_crack(): except IndexError: continue else: - selected_hcatRules = hcatRules + for rule in hcatRules: + selected_hcatRules.append('-r {hcatPath}/rules/{selected_rule}'.format(selected_rule=rule, hcatPath=hcatPath)) for chain in selected_hcatRules: hcatQuickDictionary(hcatHashType, hcatHashFile, chain)