![]() |
How to run hashcat on a mac? - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Deprecated; Previous versions (https://hashcat.net/forum/forum-29.html) +--- Forum: Old hashcat Support (https://hashcat.net/forum/forum-20.html) +--- Thread: How to run hashcat on a mac? (/thread-2134.html) |
How to run hashcat on a mac? - Convex - 03-10-2013 I have a mac, and how do I run hashcat on my mac? I downloaded hashcat-0.43 and I know I have to run it in command line, but isn't terminal different from CMD? Thanks. RE: How to run hashcat on a mac? - radix - 03-10-2013 ./hashcat-cli64.app --help RE: How to run hashcat on a mac? - Convex - 03-10-2013 (03-10-2013, 10:20 PM)radix Wrote: ./hashcat-cli64.app --help What? It says "No such file or directory" RE: How to run hashcat on a mac? - tony - 03-10-2013 (03-10-2013, 10:22 PM)Convex Wrote:(03-10-2013, 10:20 PM)radix Wrote: ./hashcat-cli64.app --help run it from the same directory where the app is located ! RE: How to run hashcat on a mac? - Convex - 03-10-2013 (03-10-2013, 10:33 PM)tony Wrote:(03-10-2013, 10:22 PM)Convex Wrote:(03-10-2013, 10:20 PM)radix Wrote: ./hashcat-cli64.app --help I tried and it said "Can't find "hashcat-0.43" RE: How to run hashcat on a mac? - tony - 03-11-2013 (03-10-2013, 10:35 PM)Convex Wrote:(03-10-2013, 10:33 PM)tony Wrote:(03-10-2013, 10:22 PM)Convex Wrote:(03-10-2013, 10:20 PM)radix Wrote: ./hashcat-cli64.app --help Ok, what di you have in the Hashcat folder ? make an "ls -al" or an simple "ls"... RE: How to run hashcat on a mac? - vizzdoom - 03-11-2013 Code: vizzdoom@viMac:~/Pentest/hashcat/hashcat-0.43$ ls RE: How to run hashcat on a mac? - mykulh - 03-11-2013 (03-11-2013, 09:59 PM)vizzdoom Wrote: So now try this from within the Hashcat-43 folder: ./hashcat-cli64.app examples/A0.M0.hash /Users/XXXXXX/Desktop/Wordlist.dict Where /Users/XXXXXX/Desktop/Wordlist.dict is the path to your dictionary file. RE: How to run hashcat on a mac? - Convex - 03-13-2013 (03-11-2013, 11:24 PM)mykulh Wrote:Oh my god! Thank you so much man! But how do I change what mode to run it in?(03-11-2013, 09:59 PM)vizzdoom Wrote: RE: How to run hashcat on a mac? - mykulh - 03-14-2013 (03-13-2013, 05:16 AM)Convex Wrote:(03-11-2013, 11:24 PM)mykulh Wrote:Oh my god! Thank you so much man! But how do I change what mode to run it in?(03-11-2013, 09:59 PM)vizzdoom Wrote: To change the hash to SHA1, for example ./hashcat-cli64.app examples/A0.M100.hash -m 100 /Users/XXXXXX/Desktop/Wordlist.dict To change the attack type to brute force a SHA1 hash, for example ./hashcat-cli64.app examples/A0.M100.hash -m 100 -a 3 -1 ?a?a?a?a?a?a (for six characters using upper/lower/num/special) |