Fix #3808 - NoMethodError undefined method `map'

NoMethodError undefined method `map' due to an incorrect use of
load_password_vars
bug/bundler_fix
sinn3r 2014-10-06 15:42:51 -05:00
parent a65ee6cf30
commit d3354d01f0
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ class Metasploit3 < Msf::Auxiliary
# Brute force previously found users
if not usernames.empty?
print_status("#{target_uri} - Brute-forcing previously found accounts...")
passwords = load_password_vars(datastore['PASS_FILE'])
passwords = load_password_vars
usernames.each do |user|
passwords.each do |pass|
do_login(user, pass)