Skip to content

Commit 917d2c7

Browse files
committed
Use All4 instead of LanMan
... Which was the original behavior. A full incremental LanMan can take many hours instead of the few seconds this module was intended to run.
1 parent a2a75ff commit 917d2c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

modules/auxiliary/analyze/jtr_crack_fast.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def initialize
3030
def run
3131
cracker = new_john_cracker
3232

33-
#generate our wordlist and close the file handle
33+
# generate our wordlist and close the file handle
3434
wordlist = wordlist_file
3535
wordlist.close
3636
print_status "Wordlist file written out to #{wordlist.path}"
@@ -53,10 +53,10 @@ def run
5353
end
5454

5555
if format == 'lm'
56-
print_status "Cracking #{format} hashes in incremental mode (LanMan)..."
56+
print_status "Cracking #{format} hashes in incremental mode (All4)..."
5757
cracker_instance.rules = nil
5858
cracker_instance.wordlist = nil
59-
cracker_instance.incremental = 'LanMan'
59+
cracker_instance.incremental = 'All4'
6060
cracker_instance.crack do |line|
6161
print_status line.chomp
6262
end

0 commit comments

Comments
 (0)