output everything to files

This commit is contained in:
kolaente 2022-12-12 18:37:34 +01:00
parent dc9d39438a
commit a91d079fd4
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
7 changed files with 7 additions and 6 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
*.txt

View File

@ -1,2 +1,2 @@
#/usr/bin/env sh
hashcat -a 3 -m 0 example0.hash '?l?l?l?l?l?l?l'
hashcat -a 3 -m 0 example0.hash '?l?l?l?l?l?l?l' -o cracked-7-lowercase.txt

View File

@ -1,2 +1,2 @@
#/usr/bin/env sh
hashcat -a 3 -m 0 example0.hash '?l?l?l?l?l?l?l?l'
hashcat -a 3 -m 0 example0.hash '?l?l?l?l?l?l?l?l' -o cracked-8-lowecase.txt

View File

@ -1,2 +1,2 @@
#/usr/bin/env sh
hashcat -a 1 -m 0 bfield.hash 1-1000.txt
hashcat -a 1 -m 0 bfield.hash 1-1000.txt rockyou.txt -o cracked-combinate-1000-most-used.txt

View File

@ -1,4 +1,4 @@
#/usr/bin/env sh
# One lowercase at the beginning, two numbers at the end
hashcat -a 3 -m 0 example0.hash '?u?l?l?l?l?l?d?d'
hashcat -a 3 -m 0 example0.hash '?u?l?l?l?l?l?d?d' -o cracked-common-password-rule.txt

View File

@ -1,2 +1,2 @@
#/usr/bin/env sh
hashcat -m 0 -r dive.rule example0.hash rockyou.txt
hashcat -m 0 -r dive.rule example0.hash rockyou.txt -o cracked-dive-rule.txt

View File

@ -1,2 +1,2 @@
#/usr/bin/env sh
hashcat -a 0 -m 0 example0.hash rockyou.txt
hashcat -a 0 -m 0 example0.hash rockyou.txt -o cracked-rockyou.txt