Reindent description

bug/bundler_fix
Meatballs 2014-12-14 10:04:18 +00:00
parent 6ecf537f40
commit 00b802cc68
No known key found for this signature in database
GPG Key ID: 5380EAF01F2F8B38
1 changed files with 12 additions and 11 deletions

View File

@ -12,17 +12,18 @@ class Metasploit3 < Msf::Post
include Msf::Post::Windows::Accounts include Msf::Post::Windows::Accounts
def initialize(info = {}) def initialize(info = {})
super(update_info(info, super(update_info(
'Name' => 'Windows Gather Active Directory Users', info,
'Description' => %{ 'Name' => 'Windows Gather Active Directory Users',
This module will enumerate user accounts in the default Active Domain (AD) directory and stores 'Description' => %{
them in the database. This module will enumerate user accounts in the default Active Domain (AD) directory and stores
}, them in the database.
'License' => MSF_LICENSE, },
'Author' => [ 'Ben Campbell' ], 'License' => MSF_LICENSE,
'Platform' => [ 'win' ], 'Author' => [ 'Ben Campbell' ],
'SessionTypes' => [ 'meterpreter' ] 'Platform' => [ 'win' ],
)) 'SessionTypes' => [ 'meterpreter' ]
))
register_options([ register_options([
OptBool.new('STORE_LOOT', [true, 'Store file in loot.', false]) OptBool.new('STORE_LOOT', [true, 'Store file in loot.', false])