Parse and print each response (for now)

bug/bundler_fix
Jon Hart 2014-10-21 19:12:50 -07:00
parent 9ad0fc38f7
commit 0f5aaaf607
1 changed files with 3 additions and 2 deletions

View File

@ -63,8 +63,9 @@ class Metasploit3 < Msf::Auxiliary
def scanner_postscan(_batch)
@results.keys.each do |k|
resp = ::Net::DNS::Packet.parse(k)
print_good("#{k} responded with #{resp.inspect}")
resps.each do |resp|
print_good("#{k} responded with #{::Net::DNS::Packet.parse(resp)}")
end
end
end
end