Skip to content

Commit

Permalink
feat: add hashcat example
Browse files Browse the repository at this point in the history
  • Loading branch information
alfredgamulo committed Jul 19, 2023
1 parent f00279e commit 7eb0d4d
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions MetaCTF/ACE-T/a_naive_hash.md
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`

0 comments on commit 7eb0d4d

Please sign in to comment.