You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: lib/msf/core/auxiliary/auth_brute.rb
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -23,7 +23,8 @@ def initialize(info = {})
23
23
OptBool.new('BLANK_PASSWORDS',[false,"Try blank passwords for all users",true]),
24
24
OptBool.new('USER_AS_PASS',[false,"Try the username as the password for all users",true]),
25
25
OptBool.new('DB_USERPASS',[false,"Try each user/password couple stored in the current database",true]),
26
-
OptBool.new('DB_ADD_ALL',[false,"Add all user and passwords in the current database to the lists (This will try every user with every password)",false]),
26
+
OptBool.new('DB_ALL_USERS',[false,"Add all users in the current database to the list",false]),
27
+
OptBool.new('DB_ALL_PASS',[false,"Add all passwords in the current database to the list",false]),
27
28
OptBool.new('STOP_ON_SUCCESS',[true,"Stop guessing when a credential works for a host",false]),
0 commit comments