Problem get password that is in dictionary
#11
Very strange.. With MD5, all it's ok.. With bcrypt it isn't..

I went to bcrypthashgenerator online and with string "password" I got "$2a$06$L9Wia/w6vQkxDK16ans6COCAiQ84Vl1RE3y9yl.A0zs7mgkcNjRp2"

Then on the terminal

echo -n '$2a$06$L9Wia/w6vQkxDK16ans6COCAiQ84Vl1RE3y9yl.A0zs7mgkcNjRp2' >> hash

then

nano dizionario.txt and put them

try
trytry
password
anotherstring

Now, with

hashcat -m 3200 hash dizionario.txt -o ris.txt

I've Exhausted message.. Why?
#12
@Honik89 Could you please try with current git HEAD version? (make clean; git pull; make)

This patch might fix the bcrypt problem you are experiencing (which only affects the Apple OpenCL runtime): https://github.com/hashcat/hashcat/commi...d4b05e85e5
#13
(03-03-2017, 12:06 AM)philsmd Wrote: @Honik89 Could you please try with current git HEAD version? (make clean; git pull; make)

This patch might fix the bcrypt problem you are experiencing (which only affects the Apple OpenCL runtime): https://github.com/hashcat/hashcat/commi...d4b05e85e5

Yeah.. now it's good.. Thanks a lot