Sha256: 56b12ace5351f92dbc2becadbcaf92b25756f938d6c223eee04bd74de5737458
Contents?: true
Size: 705 Bytes
Versions: 5
Compression:
Stored size: 705 Bytes
Contents
=begin Copyright 2010-2022 Ecsypno <http://www.ecsypno.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
5 entries across 5 versions & 1 rubygems