Skip to content

Commit 600a296

Browse files
committed
Do minor cleanup
1 parent eb8fdcc commit 600a296

File tree

1 file changed

+12
-11
lines changed

1 file changed

+12
-11
lines changed

modules/post/windows/gather/enum_ad_bitlocker.rb

Lines changed: 12 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
##
2-
# This module requires Metasploit: http//metasploit.com/download
2+
# This module requires Metasploit: http://metasploit.com/download
33
# Current source: https://github.com/rapid7/metasploit-framework
44
##
55

@@ -14,18 +14,18 @@ class Metasploit3 < Msf::Post
1414
def initialize(info = {})
1515
super(update_info(info,
1616
'Name' => 'Windows Gather Active Directory BitLocker Recovery',
17-
'Description' => %(
18-
This module will enumerate BitLocker recovery passwords in the default AD
19-
directory. Requires Domain Admin or other delegated privileges.
20-
),
17+
'Description' => %q{
18+
This module will enumerate BitLocker recovery passwords in the default AD
19+
directory. Requires Domain Admin or other delegated privileges.
20+
},
2121
'License' => MSF_LICENSE,
22-
'Author' => [ 'Ben Campbell <ben.campbell[at]mwrinfosecurity.com>' ],
23-
'Platform' => [ 'win' ],
24-
'SessionTypes' => [ 'meterpreter' ],
22+
'Author' => ['Ben Campbell <ben.campbell[at]mwrinfosecurity.com>'],
23+
'Platform' => ['win'],
24+
'SessionTypes' => ['meterpreter'],
2525
'References' =>
26-
[
27-
['URL', 'https://technet.microsoft.com/en-us/library/cc771778%28v=ws.10%29.aspx']
28-
]
26+
[
27+
['URL', 'https://technet.microsoft.com/en-us/library/cc771778%28v=ws.10%29.aspx']
28+
]
2929
))
3030

3131
register_options([
@@ -66,6 +66,7 @@ def run
6666
end
6767

6868
print_line results_table.to_s
69+
6970
if datastore['STORE_LOOT']
7071
stored_path = store_loot('bitlocker.recovery', 'text/plain', session, results_table.to_csv)
7172
print_status("Results saved to: #{stored_path}")

0 commit comments

Comments
 (0)