From 854493d13a64a37577c9a8cf512ae698069e6bb6 Mon Sep 17 00:00:00 2001 From: David Llewellyn-Jones Date: Thu, 25 Aug 2016 01:16:20 +0100 Subject: [PATCH] Add hashcat command lines --- hmac-all.sh | 25 +++++++++++++++++++++++++ hmac.sh | 13 +++++++++++++ 2 files changed, 38 insertions(+) create mode 100755 hmac-all.sh create mode 100755 hmac.sh diff --git a/hmac-all.sh b/hmac-all.sh new file mode 100755 index 0000000..61fd09b --- /dev/null +++ b/hmac-all.sh @@ -0,0 +1,25 @@ +echo "**********************************************" +echo "hashcat --potfile-disable -t 32 -m 0 -a 0 hashes/04-plus.txt example.dict" +hashcat --potfile-disable -t 32 -m 0 -a 0 hashes/04-plus.txt example.dict +echo "**********************************************" +echo "hashcat --potfile-disable -t 32 -m 0 -a 0 --mangle hashes/04-plus.txt example.dict" +hashcat --potfile-disable -t 32 -m 0 -a 0 --mangle hashes/04-plus.txt example.dict +echo "**********************************************" +echo "hashcat --potfile-disable -t 32 -m 0 -a 1 hashes/04-plus.txt example.dict example.dict" +hashcat --potfile-disable -t 32 -m 0 -a 1 hashes/04-plus.txt example.dict example.dict +echo "**********************************************" +echo "hashcat --potfile-disable -t 32 -m 0 -a 1 --mangle hashes/04-plus.txt example.dict example.dict" +hashcat --potfile-disable -t 32 -m 0 -a 1 --mangle hashes/04-plus.txt example.dict example.dict +echo "**********************************************" +echo "hashcat --potfile-disable -t 32 -m 0 -a 3 hashes/04-plus.txt ?l?l?l?l?d?d?d?d" +hashcat --potfile-disable -t 32 -m 0 -a 3 hashes/04-plus.txt ?l?l?l?l?d?d?d?d +echo "**********************************************" +echo "hashcat --potfile-disable -t 32 -m 0 -a 3 --mangle hashes/04-plus.txt ?l?l?l?l?d?d?d?d" +hashcat --potfile-disable -t 32 -m 0 -a 3 --mangle hashes/04-plus.txt ?l?l?l?l?d?d?d?d + + + +#hashcat --potfile-disable -t 32 -m 60 -a 0 hmac.hash example.dict +#hashcat --potfile-disable -t 32 -m 60 -a 7 hmac.hash ?a?a?a?a example.dict +#rm .hashcat/hashcat.pot + diff --git a/hmac.sh b/hmac.sh new file mode 100755 index 0000000..d58b19b --- /dev/null +++ b/hmac.sh @@ -0,0 +1,13 @@ +#hashcat --potfile-disable -t 32 -m 100 -a 0 --mangle hashes/07-small.txt example.dict +#hashcat --potfile-disable -t 32 -m 100 -a 1 --mangle hashes/07-small.txt example.dict example.dict +hashcat --potfile-disable -t 32 -m 100 -a 3 --mangle hashes/07-small.txt ?l?l?l?l?l?l?l +#hashcat --potfile-disable -t 32 -m 0 -a 0 hashes/04-plus.txt example.dict +#hashcat --potfile-disable -t 32 -m 0 -a 0 --mangle hashes/04-plus.txt example.dict +#hashcat --potfile-disable -t 32 -m 0 -a 1 hashes/04-plus.txt example.dict example.dict +#hashcat --potfile-disable -t 32 -m 0 -a 3 hashes/04-plus.txt ?l?l?l?l?d?d?d?d + + +#hashcat --potfile-disable -t 32 -m 60 -a 0 hmac.hash example.dict +#hashcat --potfile-disable -t 32 -m 60 -a 7 hmac.hash ?a?a?a?a example.dict +#rm .hashcat/hashcat.pot + -- 2.25.1