Skip to content

Commit 61bdd58

Browse files
committed
Fix required flag on options
1 parent 37a55cc commit 61bdd58

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

modules/auxiliary/admin/http/wp_wplms_privilege_escalation.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ def initialize(info = {})
3838

3939
register_options(
4040
[
41-
OptString.new('USERNAME', [false, 'The WordPress username to authenticate with']),
42-
OptString.new('PASSWORD', [false, 'The WordPress password to authenticate with'])
41+
OptString.new('USERNAME', [true, 'The WordPress username to authenticate with']),
42+
OptString.new('PASSWORD', [true, 'The WordPress password to authenticate with'])
4343
], self.class)
4444
end
4545

0 commit comments

Comments
 (0)