Remove default empty string

bug/bundler_fix
Waqas Ali 2015-11-25 12:19:16 +05:00
parent 2152c310fe
commit c09d8031c6
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ class Metasploit3 < Msf::Auxiliary
register_options(
[
OptInt.new('RPORT', [ true, "The target port", 443]),
OptAddress.new('RHOST', [ true, "The target address", '']),
OptAddress.new('RHOST', [ true, "The target address" ]),
OptBool.new('ENUM_DOMAIN', [ true, "Automatically enumerate AD domain using NTLM authentication", true]),
OptBool.new('AUTH_TIME', [ false, "Check HTTP authentication response time", true])
], self.class)