Sha256: 0e29740fc448a62e3d15ed2dbe00cdf94ee1cafafe5a6228bff9832668c130dc
Contents?: true
Size: 720 Bytes
Versions: 7
Compression:
Stored size: 720 Bytes
Contents
=begin Copyright 2010-2014 Tasos Laskos <tasos.laskos@arachni-scanner.com> This file is part of the Arachni Framework project and is subject to redistribution and commercial restrictions. Please see the Arachni Framework web site for more information on licensing and terms of use. =end class Arachni::Reporters::Stdout # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> # class PluginFormatters::UncommonHeaders < Arachni::Plugin::Formatter def run results.each do |url, headers| print_status url headers.each do |name, value| print_info "#{name}: #{value}" end print_line end end end end
Version data entries
7 entries across 7 versions & 1 rubygems