Skip to content

Commit 9e52a10

Browse files
committed
Set SSL to default to true and removed SSL from register_options. Updated Author to include full name
1 parent 5ef40e3 commit 9e52a10

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

modules/auxiliary/scanner/http/owa_login.rb

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,9 @@ def initialize
2828
'SecureState R&D Team',
2929
'sinn3r',
3030
'Brandon Knight',
31-
'Pete -> Outlook 2013 updates'
31+
'Pete Arzamendi -> Outlook 2013 updates'
3232
],
33+
3334
'License' => MSF_LICENSE,
3435
'Actions' =>
3536
[
@@ -73,14 +74,16 @@ def initialize
7374
'DefaultAction' => 'OWA_2010'
7475
)
7576

77+
'DefaultOptions' => { 'SSL' => true }
78+
7679
register_options(
7780
[
7881
OptInt.new('RPORT', [ true, "The target port", 443]),
7982
OptAddress.new('RHOST', [ true, "The target address", true]),
8083
OptBool.new('ENUM_DOMAIN', [ true, "Automatically enumerate AD domain using NTLM authentication", false]),
81-
OptBool.new('SSL', [ true, "Negotiate SSL for outgoing connections", true])
8284
], self.class)
8385

86+
8487
register_advanced_options(
8588
[
8689
OptString.new('AD_DOMAIN', [ false, "Optional AD domain to prepend to usernames", ''])

0 commit comments

Comments
 (0)