From c636c1f21711cca1d4583370c9d61facaabb0ba9 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Fri, 18 Sep 2020 12:31:29 +0200 Subject: [PATCH] Added notes on Hashcat --- arch-config/Dokumente/Hashcat-testing.md | 26 ++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 arch-config/Dokumente/Hashcat-testing.md diff --git a/arch-config/Dokumente/Hashcat-testing.md b/arch-config/Dokumente/Hashcat-testing.md new file mode 100644 index 00000000..7d5f705f --- /dev/null +++ b/arch-config/Dokumente/Hashcat-testing.md @@ -0,0 +1,26 @@ +# Hashcat + +## Benchmark performance +```bash +hashcat --benchmark +``` + +## Wordlists + +## Cracking +```bash +hashcat -a 0 -m 0 .txt -o passwords.txt .txt --disable-potfile +``` + +### Useful options + +-a [num]: attack mode +-m [num]: hash type +-D [num]: openCL device to use. Multiple are separated with commas. + +# Generate md5 hash + +Also outputs the hash into a file. +```bash +openssl passwd -1 > .txt +```