Fix metadata
parent
10fd5304ce
commit
277711b578
|
@ -14,16 +14,18 @@ class Metasploit3 < Msf::Auxiliary
|
|||
|
||||
def initialize(info = {})
|
||||
super(update_info(info,
|
||||
'Name' => 'IBM Lotus Notes Sametime User Enumeration',
|
||||
'Description' => %q{
|
||||
'Name' => 'IBM Lotus Notes Sametime User Enumeration',
|
||||
'Description' => %q{
|
||||
This module extracts users using the IBM Lotus Notes Sametime web
|
||||
interface using either brute-force or dictionary based attack.
|
||||
},
|
||||
'Author' =>
|
||||
'Author' =>
|
||||
[
|
||||
'kicks4kittens' # Metasploit module
|
||||
],
|
||||
'License' => BSD_LICENSE))
|
||||
'License' => MSF_LICENSE,
|
||||
'DisclosureDate' => 'Dec 27 2013'
|
||||
))
|
||||
|
||||
register_options(
|
||||
[
|
||||
|
|
|
@ -14,17 +14,18 @@ class Metasploit3 < Msf::Auxiliary
|
|||
|
||||
def initialize(info = {})
|
||||
super(update_info(info,
|
||||
'Name' => 'IBM Lotus Notes Sametime Room Name Brute-Forcer',
|
||||
'Description' => %q{
|
||||
'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' =>
|
||||
'Author' =>
|
||||
[
|
||||
'kicks4kittens' # Metasploit module
|
||||
],
|
||||
'License' => BSD_LICENSE))
|
||||
|
||||
'License' => MSF_LICENSE,
|
||||
'DisclosureDate' => 'Dec 27 2013'
|
||||
))
|
||||
register_options(
|
||||
[
|
||||
Opt::RPORT(443),
|
||||
|
|
|
@ -59,19 +59,20 @@ class Metasploit3 < Msf::Auxiliary
|
|||
]
|
||||
|
||||
|
||||
def initialize
|
||||
super(
|
||||
'Name' => 'IBM Lotus Sametime Version Enumeration',
|
||||
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
|
||||
the version and configuration information.
|
||||
},
|
||||
'Author' =>
|
||||
'Author' =>
|
||||
[
|
||||
'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