From 0a330738aa6f9b1b66c008d6fc3d12ff36284104 Mon Sep 17 00:00:00 2001 From: Jeff Holden Date: Fri, 27 Apr 2018 12:10:20 -0700 Subject: [PATCH] Add debug print --- hate_crack.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/hate_crack.py b/hate_crack.py index 129bce2..f9de764 100755 --- a/hate_crack.py +++ b/hate_crack.py @@ -314,11 +314,10 @@ def hcatYoloCombination(hcatHashType, hcatHashFile): # Holden Combinator Attack def hcatHoldenCombinator(hcatHashType, hcatHashFile): global hcatProcess - with open("{hate_path}/masks/holdenNum".format(hate_path=hate_path)) as middle: - for line in middle: - print line.strip() - if 'str' in line: - break + numbers = ("0","1","2","3","4","5","6","7","8","9") + special = (" ","-"."_","+",",","!","#","$","\"","%","&","\'","(",")","*",",",".","/",":",";","<","=",">","?","@","[","\","]","^","`","{","|","}","~",")" + print (*special) + print (*numbers) hcatProcess = subprocess.Popen( "{hcatBin} -m {hash_type} {hash_file} --remove -o {hash_file}.out -a 1 -j '$9' {word_lists}/rockyou.txt "