2014-10-31 21:04:23 +00:00
|
|
|
##
|
2015-02-03 21:50:00 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2014-10-31 21:04:23 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
include Msf::Auxiliary::UDPScanner
|
2014-10-31 21:27:30 +00:00
|
|
|
include Msf::Auxiliary::MDNS
|
2014-10-31 21:04:23 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(
|
|
|
|
update_info(
|
|
|
|
info,
|
2014-11-03 19:46:38 +00:00
|
|
|
'Name' => 'mDNS Query',
|
2014-10-31 21:04:23 +00:00
|
|
|
'Description' => %q(
|
2014-11-03 19:53:38 +00:00
|
|
|
This module sends mDNS queries, which are really just normal UDP DNS
|
|
|
|
queries done (usually) over multicast on a different port, 5353.
|
2014-10-31 21:04:23 +00:00
|
|
|
),
|
2014-11-03 19:46:38 +00:00
|
|
|
'Author' =>
|
2014-10-31 21:04:23 +00:00
|
|
|
[
|
2014-11-03 19:46:38 +00:00
|
|
|
'Jon Hart <jon_hart[at]rapid7.com>'
|
2014-10-31 21:04:23 +00:00
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE
|
|
|
|
)
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
2014-11-03 19:46:38 +00:00
|
|
|
def scanner_prescan(batch)
|
2015-08-28 21:04:52 +00:00
|
|
|
print_status("Sending mDNS #{query_type_name} #{query_class_name} queries for " \
|
2015-08-13 18:17:27 +00:00
|
|
|
"#{query_name} to #{batch[0]}->#{batch[-1]} port #{rport} (#{batch.length} hosts)")
|
2014-11-03 19:46:38 +00:00
|
|
|
@results = {}
|
2014-10-31 21:04:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def scanner_postscan(_batch)
|
2015-09-02 23:30:03 +00:00
|
|
|
found = {}
|
2014-11-03 19:46:38 +00:00
|
|
|
@results.each_pair do |peer, resps|
|
|
|
|
resps.each do |resp|
|
2015-09-02 23:30:03 +00:00
|
|
|
found[peer] ||= {}
|
|
|
|
next if found[peer][resp]
|
2015-09-02 17:31:46 +00:00
|
|
|
response_info = describe_response(resp)
|
|
|
|
print_good("#{peer} responded with #{response_info}")
|
2015-09-02 23:30:03 +00:00
|
|
|
report_service(host: peer, port: rport, proto: "udp", name: "mdns", info: response_info)
|
|
|
|
found[peer][resp] = true
|
2014-10-31 21:04:23 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|