Use less memory when brute forcing with a large wordlist
This commit is contained in:
@@ -5,17 +5,12 @@ class WpUsers < WpItems
|
||||
|
||||
# Brute force each wp_user
|
||||
#
|
||||
# To avoid loading the wordlist each time in the wp_user instance
|
||||
# It's loaded here, and given to the wp_user
|
||||
#
|
||||
# @param [ String, Array<String> ] wordlist
|
||||
# @param [ String ] wordlist The path to the wordlist
|
||||
# @param [ Hash ] options See WpUser::BruteForcable#brute_force
|
||||
#
|
||||
# @return [ void ]
|
||||
def brute_force(wordlist, options = {})
|
||||
passwords = WpUser::BruteForcable.passwords_from_wordlist(wordlist)
|
||||
|
||||
self.each { |wp_user| wp_user.brute_force(passwords, options) }
|
||||
self.each { |wp_user| wp_user.brute_force(wordlist, options) }
|
||||
end
|
||||
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user