hashcat Forum
Problem get password that is in dictionary - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: Problem get password that is in dictionary (/thread-6344.html)

Pages: 1 2


RE: Problem get password that is in dictionary - Honik89 - 03-02-2017

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?


RE: Problem get password that is in dictionary - philsmd - 03-03-2017

@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/commit/fbb1f92d2b95062b5fff9596e79435d4b05e85e5


RE: Problem get password that is in dictionary - Honik89 - 03-03-2017

(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/commit/fbb1f92d2b95062b5fff9596e79435d4b05e85e5

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