bug/bundler_fix
Jon Hart 2016-09-30 06:35:26 -07:00
parent 9ee6e1931a
commit abed3bf6c2
No known key found for this signature in database
GPG Key ID: 2FA9F0A3AFA8E9D3
1 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@ class MetasploitModule < Msf::Post
super( super(
update_info( update_info(
info, info,
'Name' => 'Enumerate AWS EC2 Instance Metadata', 'Name' => 'Gather AWS EC2 Instance Metadata',
'Description' => %q( 'Description' => %q(
This module will attempt to connect to the AWS EC2 instance metadata service This module will attempt to connect to the AWS EC2 instance metadata service
and crawl and collect all metadata known about the session'd host. and crawl and collect all metadata known about the session'd host.
@ -20,7 +20,7 @@ class MetasploitModule < Msf::Post
'Jon Hart <jon_hart[at]rapid7.com>' # original metasploit module 'Jon Hart <jon_hart[at]rapid7.com>' # original metasploit module
], ],
# TODO: is there a way to do this on Windows? # TODO: is there a way to do this on Windows?
'Platform' => %w(linux osx unix), 'Platform' => %w(unix),
'SessionTypes' => %w(shell meterpreter), 'SessionTypes' => %w(shell meterpreter),
'References' => 'References' =>
[ [
@ -31,7 +31,7 @@ class MetasploitModule < Msf::Post
register_advanced_options( register_advanced_options(
[ [
OptString.new('TARGETURI', [true, 'AWS EC2 Instance metadata URI', 'http://169.254.169.254/latest/meta-data/ ']) OptString.new('TARGETURI', [true, 'AWS EC2 Instance metadata URI', 'http://169.254.169.254/latest/meta-data/'])
] ]
) )
end end