Sha256: 9ef62c9bbd7f788fd033783f59d3797cb833e30fe6ef47594c641585097b9d43
Contents?: true
Size: 720 Bytes
Versions: 6
Compression:
Stored size: 720 Bytes
Contents
=begin Copyright 2010-2015 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
6 entries across 6 versions & 1 rubygems