-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f00279e
commit 7eb0d4d
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
A Naive Hash | ||
|
||
``` | ||
Hashing is a method of reducing some input to a fixed-length signature. There is no way to decrypt the original messages without guessing some possibilities. Can you crack this MD5 hash? | ||
5c2981b42e5bc96ad70cf064290b70b4 | ||
``` | ||
|
||
1. `brew install hashcat` | ||
|
||
1. `curl -OL https://github.com/brannondorsey/naive-hashcat/releases/download/data/rockyou.txt` | ||
|
||
1. `hashcat -m 0 -a 0 hash.txt rockyou.txt` | ||
|
||
1. `hashcat -m 0 -a 0 hash.txt rockyou.txt --show` |