How to run Hashcat on mac osx 10.6.8 32bit?
#3
Assuming you have no technical bg:

it's rather simple and i've managed to run it on mac osx.
steps:
1. http://hashcat.net/hashcat/ < download latest version
2. In the hashcat folder create 2 text files, one called hash.txt, one called cracked.txt. Also create a folder called wordlist
3. Input the hashes you want to crack in hash.txt and paste all your wordlists in the wordlist folder
4. Identify the type of hash you want to crack - find the list here under hash types: http://hashcat.net/wiki/doku.php?id=hashcat
5. Open terminal: Type "cd [Location of hashcat folder]" < minus the quotations and [ ], i prefer to drag and drop folder into terminal so it outputs the location
6. ./hashcat-cli64.app -m [hash type] --outfile=[crack.txt] --remove [hash.txt] wordlist/ in this part you need to fill three sections, the hash type. for example MD5 hash you would type 0, for phpass you would type 400, you get the point. drag and drop your crack.txt so it gives exact location of your crack file, likewise with the hash.txt
7. press enter, and confirm by typing YES

8. now it will scan, hold down enter key to see progress in realtime. and cracked hashes will be output in your crack.txt file

------
For example:

your command line should look similar to this:
./hashcat-cli64.app -m 400 --outfile=/Users/xxxx/Desktop/hashcat-0.49/crack.txt --remove /Users/xxxx/Desktop/hashcat-0.49/hash.txt wordlist/


Messages In This Thread
RE: How to run Hashcat on mac osx 10.6.8 32bit? - by Spice - 04-18-2015, 06:08 PM