mirror of
https://github.com/brannondorsey/naive-hashcat.git
synced 2025-07-23 13:54:47 +02:00
Remove device-specific flag
This commit is contained in:
parent
5ad1b4bb4c
commit
14b1625323
@ -15,24 +15,24 @@ fi
|
|||||||
# DICTIONARY ATTACK-----------------------------------------------------------------------
|
# DICTIONARY ATTACK-----------------------------------------------------------------------
|
||||||
# begin with a _very_ simple and naive dictionary attack. This is blazing fast and
|
# begin with a _very_ simple and naive dictionary attack. This is blazing fast and
|
||||||
# I've seen it crack ~20% of hashes
|
# I've seen it crack ~20% of hashes
|
||||||
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt --potfile-path "$POT_FILE" --opencl-devices 2
|
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt --potfile-path "$POT_FILE"
|
||||||
|
|
||||||
# DICTIONARY ATTACK WITH RULES------------------------------------------------------------
|
# DICTIONARY ATTACK WITH RULES------------------------------------------------------------
|
||||||
# now lets move on to a rule based attack, d3ad0ne.rule is a great one to start with
|
# now lets move on to a rule based attack, d3ad0ne.rule is a great one to start with
|
||||||
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt -r hashcat-3.6.0/rules/d3ad0ne.rule --potfile-path "$POT_FILE" --opencl-devices 2
|
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt -r hashcat-3.6.0/rules/d3ad0ne.rule --potfile-path "$POT_FILE"
|
||||||
|
|
||||||
# rockyou is pretty good, and not too slow
|
# rockyou is pretty good, and not too slow
|
||||||
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt -r hashcat-3.6.0/rules/rockyou-30000.rule --potfile-path "$POT_FILE" --opencl-devices 2
|
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt -r hashcat-3.6.0/rules/rockyou-30000.rule --potfile-path "$POT_FILE"
|
||||||
|
|
||||||
|
|
||||||
# MEDIUM
|
# MEDIUM
|
||||||
# dive is a great rule file, but it takes a bit longer to run, so we will run it after d3ad0ne and rockyou
|
# dive is a great rule file, but it takes a bit longer to run, so we will run it after d3ad0ne and rockyou
|
||||||
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt -r hashcat-3.6.0/rules/dive.rule --potfile-path "$POT_FILE" --opencl-devices 2
|
"$HASHCAT" -m "$HASH_TYPE" -a 0 "$HASH_FILE" dicts/rockyou.txt -r hashcat-3.6.0/rules/dive.rule --potfile-path "$POT_FILE"
|
||||||
|
|
||||||
# HEAVY
|
# HEAVY
|
||||||
# MASK ATTACK (BRUTE-FORCE)---------------------------------------------------------------
|
# MASK ATTACK (BRUTE-FORCE)---------------------------------------------------------------
|
||||||
"$HASHCAT" -m "$HASH_TYPE" -a 3 "$HASH_FILE" hashcat-3.6.0/masks/rockyou-1-60.hcmask --potfile-path "$POT_FILE" --opencl-devices 2
|
"$HASHCAT" -m "$HASH_TYPE" -a 3 "$HASH_FILE" hashcat-3.6.0/masks/rockyou-1-60.hcmask --potfile-path "$POT_FILE"
|
||||||
|
|
||||||
# COMBINATION ATTACK----------------------------------------------------------------------
|
# COMBINATION ATTACK----------------------------------------------------------------------
|
||||||
# this one can take 12+ hours, don't use it by default
|
# this one can take 12+ hours, don't use it by default
|
||||||
# "$HASHCAT" -m "$HASH_TYPE" -a 1 "$HASH_FILE" dicts/rockyou.txt dicts/rockyou.txt --potfile-path "POT_FILE" --opencl-devices 2
|
# "$HASHCAT" -m "$HASH_TYPE" -a 1 "$HASH_FILE" dicts/rockyou.txt dicts/rockyou.txt --potfile-path "POT_FILE"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user