Skip to content

Commit df70678

Browse files
David MaloneyDavid Maloney
authored andcommitted
tell suer KoreLogic rules have been applied
make sure to rpovide console feedback that we are actually applying the KoreLogic rules to wordlist mode
1 parent 4ad7021 commit df70678

File tree

6 files changed

+6
-0
lines changed

6 files changed

+6
-0
lines changed

modules/auxiliary/analyze/jtr_aix.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ def run
4646
# Turn on KoreLogic rules if the user asked for it
4747
if datastore['KoreLogic']
4848
cracker_instance.rules = 'KoreLogicRules'
49+
print_status "Applying KoreLogic ruleset..."
4950
end
5051
cracker_instance.crack do |line|
5152
print_status line.chomp

modules/auxiliary/analyze/jtr_crack_fast.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def run
4545
# Turn on KoreLogic rules if the user asked for it
4646
if datastore['KoreLogic']
4747
cracker_instance.rules = 'KoreLogicRules'
48+
print_status "Applying KoreLogic ruleset..."
4849
end
4950
cracker_instance.crack do |line|
5051
print_status line.chomp

modules/auxiliary/analyze/jtr_linux.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ def run
6060
# Turn on KoreLogic rules if the user asked for it
6161
if datastore['KoreLogic']
6262
cracker_instance.rules = 'KoreLogicRules'
63+
print_status "Applying KoreLogic ruleset..."
6364
end
6465
cracker_instance.crack do |line|
6566
print_status line.chomp

modules/auxiliary/analyze/jtr_mssql_fast.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ def run
4747
# Turn on KoreLogic rules if the user asked for it
4848
if datastore['KoreLogic']
4949
cracker_instance.rules = 'KoreLogicRules'
50+
print_status "Applying KoreLogic ruleset..."
5051
end
5152
cracker_instance.crack do |line|
5253
print_status line.chomp

modules/auxiliary/analyze/jtr_mysql_fast.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def run
4545
# Turn on KoreLogic rules if the user asked for it
4646
if datastore['KoreLogic']
4747
cracker_instance.rules = 'KoreLogicRules'
48+
print_status "Applying KoreLogic ruleset..."
4849
end
4950
cracker_instance.crack do |line|
5051
print_status line.chomp

modules/auxiliary/analyze/jtr_postgres_fast.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ def run
5151
# Turn on KoreLogic rules if the user asked for it
5252
if datastore['KoreLogic']
5353
cracker_instance.rules = 'KoreLogicRules'
54+
print_status "Applying KoreLogic ruleset..."
5455
end
5556
cracker_instance.crack do |line|
5657
print_status line.chomp

0 commit comments

Comments
 (0)