Fix metadata
parent
10fd5304ce
commit
277711b578
|
@ -23,7 +23,9 @@ class Metasploit3 < Msf::Auxiliary
|
|||
[
|
||||
'kicks4kittens' # Metasploit module
|
||||
],
|
||||
'License' => BSD_LICENSE))
|
||||
'License' => MSF_LICENSE,
|
||||
'DisclosureDate' => 'Dec 27 2013'
|
||||
))
|
||||
|
||||
register_options(
|
||||
[
|
||||
|
|
|
@ -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),
|
||||
|
|
|
@ -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", '/']),
|
||||
|
|
Loading…
Reference in New Issue