Fix more style issues

GSoC/Meterpreter_Web_Console
Jon Hart 2018-03-28 09:38:02 -07:00
parent 7767505678
commit 5cdfadd0df
No known key found for this signature in database
GPG Key ID: 2FA9F0A3AFA8E9D3
1 changed files with 5 additions and 5 deletions

View File

@ -10,19 +10,19 @@ class MetasploitModule < Msf::Auxiliary
def initialize def initialize
super( super(
'Name' => 'Etcd Keys API Information Gathering', 'Name' => 'Etcd Keys API Information Gathering',
'Description' => %q( 'Description' => %q(
This module queries the etcd API to recursively retrieve all of the stored This module queries the etcd API to recursively retrieve all of the stored
key value pairs. Etcd by default does not utilize authentication. key value pairs. Etcd by default does not utilize authentication.
), ),
'References' => [ 'References' => [
['URL', 'https://elweb.co/the-security-footgun-in-etcd'] ['URL', 'https://elweb.co/the-security-footgun-in-etcd']
], ],
'Author' => [ 'Author' => [
'Giovanni Collazo <hello@gcollazo.com>', # discovery 'Giovanni Collazo <hello@gcollazo.com>', # discovery
'h00die' # msf module 'h00die' # msf module
], ],
'License' => MSF_LICENSE 'License' => MSF_LICENSE
) )
register_options( register_options(
@ -33,7 +33,7 @@ class MetasploitModule < Msf::Auxiliary
) )
end end
def run_host(target_host) def run_host(_target_host)
path = normalize_uri(target_uri.to_s, 'v2/keys/?recursive=true') path = normalize_uri(target_uri.to_s, 'v2/keys/?recursive=true')
vprint_status("#{peer} - Collecting data through #{path}...") vprint_status("#{peer} - Collecting data through #{path}...")