From b36c29cfed643cbf6c1034c547ff7096f900f757 Mon Sep 17 00:00:00 2001 From: Jeff Holden Date: Fri, 27 Apr 2018 12:23:33 -0700 Subject: [PATCH] Add debug print --- hate_crack.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/hate_crack.py b/hate_crack.py index 390e652..596862d 100755 --- a/hate_crack.py +++ b/hate_crack.py @@ -314,10 +314,10 @@ def hcatYoloCombination(hcatHashType, hcatHashFile): # Holden Combinator Attack def hcatHoldenCombinator(hcatHashType, hcatHashFile): global hcatProcess - numbers = ("0","1","2","3","4","5","6","7","8","9") - special = (" ","-","_","+",",","!","#","$","\"","%","&","\'","(",")","*",",",".","/",":",";","<","=",">","?","@","[","\","]","^","`","{","|","}","~",")" - print (*special) - print (*numbers) + 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 "