Sha256: 559cb40d5d5872fe68103f1da15090defea0e20c337708580d3d9ce14dd07e37
Contents?: true
Size: 967 Bytes
Versions: 5
Compression:
Stored size: 967 Bytes
Contents
=begin Arachni Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> This is free software; you can copy and distribute and modify this program under the term of the GPL v2.0 License (See LICENSE file for details) =end module Arachni module Reports class Stdout module PluginFormatters # # @author: Tasos "Zapotek" Laskos # <tasos.laskos@gmail.com> # <zapotek@segfault.gr> # @version: 0.1 # class Resolver < Arachni::Plugin::Formatter def run print_status( 'Resolver' ) print_info( '~~~~~~~~~~~~~~' ) print_info( 'Description: ' + @description ) print_line @results.each { |hostname, ipaddress| print_info( hostname + ': ' + ipaddress ) } print_line end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems