Skip to content

Commit 16a5fa2

Browse files
committed
Fixing typos
1 parent 96ba71b commit 16a5fa2

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

modules/auxiliary/analyze/crack_databases.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ def check_results(passwords, results, hash_type, method)
110110
end
111111

112112
def run
113-
tbl = cracker_results_table
113+
tbl = tbl = cracker_results_table
114114
cracker = new_password_cracker(action.name)
115115
if action.name == 'auto'
116116
@cracker_type = cracker.get_type

modules/auxiliary/analyze/crack_linux.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ def check_results(passwords, results, hash_type, method)
101101
end
102102

103103
def run
104-
tbl = cracker_results_table
104+
tbl = tbl = cracker_results_table
105105
cracker = new_password_cracker(action.name)
106106
if action.name == 'auto'
107107
@cracker_type = cracker.get_type

modules/auxiliary/analyze/crack_osx.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def check_results(passwords, results, hash_type, method)
9292
end
9393

9494
def run
95-
tbl = cracker_results_table
95+
tbl = tbl = cracker_results_table
9696
cracker = new_password_cracker(action.name)
9797
if action.name == 'auto'
9898
@cracker_type = cracker.get_type

modules/auxiliary/analyze/crack_webapps.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ def check_results(passwords, results, hash_type, method)
9090
end
9191

9292
def run
93-
tbl = cracker_results_table
93+
tbl = tbl = cracker_results_table
9494
cracker = new_password_cracker(action.name)
9595
if action.name == 'auto'
9696
@cracker_type = cracker.get_type

modules/auxiliary/analyze/crack_windows.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ def check_results(passwords, results, hash_type, method)
164164
end
165165

166166
def run
167-
tbl = cracker_results_table
167+
tbl = tbl = cracker_results_table
168168
cracker = new_password_cracker(action.name)
169169
if action.name == 'auto'
170170
@cracker_type = cracker.get_type

0 commit comments

Comments
 (0)