Method: Wmap::DnsBruter#print_discovered_hosts_from_bruter

Defined in:
lib/wmap/dns_bruter.rb

Print summary report of found hosts from the brute force attacks



299
300
301
302
303
304
305
306
307
# File 'lib/wmap/dns_bruter.rb', line 299

def print_discovered_hosts_from_bruter
	puts "\nSummary Report of the Discovered Hosts:"
	@discovered_hosts_from_dns_bruter.each do |domain,hosts|
		puts "Domain: #{domain}"
		puts "Found hosts:"
		puts @discovered_hosts_from_dns_bruter[domain]['hosts']
	end
	puts "End of the summary"
end