summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authordusoleil <howcansocksbereal@gmail.com>2021-08-27 17:18:08 -0400
committerdusoleil <howcansocksbereal@gmail.com>2021-09-05 23:52:15 -0400
commit2ccf4674ee3dfca6181b598edb1602b396de8f13 (patch)
tree257cd2d814f50a869cbf9563ea4bad57e714b052 /docs
parent8769b67eba7013379396146c80d44cb068d18256 (diff)
downloadlib-des-gnux-2ccf4674ee3dfca6181b598edb1602b396de8f13.tar.gz
lib-des-gnux-2ccf4674ee3dfca6181b598edb1602b396de8f13.zip
Add --status Flag to Examples
Signed-off-by: dusoleil <howcansocksbereal@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r--docs/crypto/hashcat.txt12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/crypto/hashcat.txt b/docs/crypto/hashcat.txt
index 280f4a9..2e68637 100644
--- a/docs/crypto/hashcat.txt
+++ b/docs/crypto/hashcat.txt
@@ -4,15 +4,15 @@ useful one-liners mostly stolen from naive-hashcat:
https://github.com/Kr4ken-9/naive-hashcat/blob/master/naive-hashcat.sh
hashcat -I
# DICTIONARY ATTACK
-hashcat -w 3 -m <type> -a 0 <file> dicts/rockyou.txt
+hashcat --status -w 3 -m <type> -a 0 <file> dicts/rockyou.txt
# DICTIONARY ATTACK WITH RULES
-hashcat -w 3 -m <type> -a 0 <file> dicts/rockyou.txt -r rules/d3ad0ne.rule
-hashcat -w 3 -m <type> -a 0 <file> dicts/rockyou.txt -r rules/rockyou-30000.rule
-hashcat -w 3 -m <type> -a 0 <file> dicts/rockyou.txt -r rules/dive.rule
+hashcat --status -w 3 -m <type> -a 0 <file> dicts/rockyou.txt -r rules/d3ad0ne.rule
+hashcat --status -w 3 -m <type> -a 0 <file> dicts/rockyou.txt -r rules/rockyou-30000.rule
+hashcat --status -w 3 -m <type> -a 0 <file> dicts/rockyou.txt -r rules/dive.rule
# MASK ATTACK (BRUTE-FORCE)
-hashcat -w 3 -m <type> -a 3 <file> masks/rockyou-1-60.hcmask
+hashcat --status -w 3 -m <type> -a 3 <file> masks/rockyou-1-60.hcmask
# COMBINATION ATTACK
-hashcat -w 3 -m <type> -a 1 <file> dicts/rockyou.txt dicts/rockyou.txt
+hashcat --status -w 3 -m <type> -a 1 <file> dicts/rockyou.txt dicts/rockyou.txt
general command structure:
hashcat [options] <file with hashes> [wordlist, mask, or mask file] [-r rule file]