From 7eb0d4db9d0760afb4fcf1e4a5cf92b1d99e17ca Mon Sep 17 00:00:00 2001 From: Alfred Gamulo Date: Tue, 18 Jul 2023 23:19:31 -0400 Subject: [PATCH] feat: add hashcat example --- MetaCTF/ACE-T/a_naive_hash.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 MetaCTF/ACE-T/a_naive_hash.md diff --git a/MetaCTF/ACE-T/a_naive_hash.md b/MetaCTF/ACE-T/a_naive_hash.md new file mode 100644 index 0000000..eb3580f --- /dev/null +++ b/MetaCTF/ACE-T/a_naive_hash.md @@ -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` \ No newline at end of file