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

@ -14,16 +14,18 @@ class Metasploit3 < Msf::Auxiliary
def initialize(info = {}) def initialize(info = {})
super(update_info(info, super(update_info(info,
'Name' => 'IBM Lotus Notes Sametime User Enumeration', 'Name' => 'IBM Lotus Notes Sametime User Enumeration',
'Description' => %q{ 'Description' => %q{
This module extracts users using the IBM Lotus Notes Sametime web This module extracts users using the IBM Lotus Notes Sametime web
interface using either brute-force or dictionary based attack. interface using either brute-force or dictionary based attack.
}, },
'Author' => 'Author' =>
[ [
'kicks4kittens' # Metasploit module 'kicks4kittens' # Metasploit module
], ],
'License' => BSD_LICENSE)) 'License' => MSF_LICENSE,
'DisclosureDate' => 'Dec 27 2013'
))
register_options( register_options(
[ [

View File

@ -14,17 +14,18 @@ class Metasploit3 < Msf::Auxiliary
def initialize(info = {}) def initialize(info = {})
super(update_info(info, super(update_info(info,
'Name' => 'IBM Lotus Notes Sametime Room Name Brute-Forcer', 'Name' => 'IBM Lotus Notes Sametime Room Name Brute-Forcer',
'Description' => %q{ 'Description' => %q{
This module brute forces Sametime meeting room names via the IBM 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 'kicks4kittens' # Metasploit module
], ],
'License' => BSD_LICENSE)) 'License' => MSF_LICENSE,
'DisclosureDate' => 'Dec 27 2013'
))
register_options( register_options(
[ [
Opt::RPORT(443), Opt::RPORT(443),

View File

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