Fix metadata

bug/bundler_fix
jvazquez-r7 2014-01-17 15:31:51 -06:00
parent 10fd5304ce
commit 277711b578
3 changed files with 20 additions and 16 deletions

View File

@ -23,7 +23,9 @@ class Metasploit3 < Msf::Auxiliary
[
'kicks4kittens' # Metasploit module
],
'License' => BSD_LICENSE))
'License' => MSF_LICENSE,
'DisclosureDate' => 'Dec 27 2013'
))
register_options(
[

View File

@ -17,14 +17,15 @@ class Metasploit3 < Msf::Auxiliary
'Name' => 'IBM Lotus Notes Sametime Room Name Brute-Forcer',
'Description' => %q{
This module brute forces Sametime meeting room names via the IBM
Lotus Notes Sametime web interface
Lotus Notes Sametime web interface.
},
'Author' =>
[
'kicks4kittens' # Metasploit module
],
'License' => BSD_LICENSE))
'License' => MSF_LICENSE,
'DisclosureDate' => 'Dec 27 2013'
))
register_options(
[
Opt::RPORT(443),

View File

@ -59,8 +59,8 @@ class Metasploit3 < Msf::Auxiliary
]
def initialize
super(
def initialize(info = {})
super(update_info(info,
'Name' => 'IBM Lotus Sametime Version Enumeration',
'Description' => %q{
This module scans an IBM Lotus Sametime web interface to enumerate
@ -70,8 +70,9 @@ class Metasploit3 < Msf::Auxiliary
[
'kicks4kittens' # Metasploit module
],
'License' => MSF_LICENSE
)
'License' => MSF_LICENSE,
'DisclosureDate' => 'Dec 27 2013'
))
register_options(
[
OptString.new('TARGETURI', [ true, "The path to the Sametime Server", '/']),