Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What am I doing wrong?
03-29-2012, 11:27 PM (This post was last modified: 03-29-2012 11:48 PM by Dave.)
Post: #1
Sad What am I doing wrong?
Good evening,

I'm having a problem with Hashcat and I can't seem to fix it.

Problem:
I want to try to brute force a phpBB3 hash with the GUI.
But when I press start after changing some settings, it just ends after 1 second.

My GPU (HD4850) should be compatible, I just tried Hashcat-lite with a MD5 hash. I also updated the drivers/Catalyst to the latest versions.

Screenshot:
http://gyazo.com/3c4628427f896bfea02fe8e53e08d4f6.png

Command: hashcat-cli32.exe --hash-mode 400 --attack-mode 3 --output-file E:\Downloads\hashcat-gui-0.5.1\hashcat-gui-0.5.1\hashcat\out.txt --threads 4 E:\Downloads\hashcat-gui-0.5.1\hashcat-gui-0.5.1\hash.txt ?l?u?d

hash.txt contains "$H$9WprkgKfUe4apPczlDbk09hg.S1yRJ/" as example.

I already tried to mess around with the Mask/Separator and some other things but no luck so far.

Could anyone please help me out?

Edit: same thing happens in hashcat-plus.
Find all posts by this user
Quote this message in a reply
03-29-2012, 11:51 PM
Post: #2
RE: What am I doing wrong?
when u putting [?l?u?d] as a mask.. its only trying [aA1, aA2.. aB1 aB2..]
u have to define the charsets.. then putting the mask..
ur command line should be like this::
Code:
hashcat-cli32 -m400 -a3 -oout.txt -n4 -1 ?l?u?d hash.txt ?1?1?1?1?1?1?1?1
note::
1- [hash.txt] should be in the same folder.
2- [out.txt] will be also in the same folder.
3- [?1] means one letter.. so if u want the length=3 >> ?1?1?1 ,, length=4 >> ?1?1?1?1
happy cracking ; )
Find all posts by this user
Quote this message in a reply
03-30-2012, 05:03 PM
Post: #3
RE: What am I doing wrong?
Don't know how everything with gui, but maybe at first you need to run hashcat without gui to accept EULA?
Find all posts by this user
Quote this message in a reply
Post Reply