Sha256: ad4e1d88bd3f0209305d8251310fc13334b76b0c15a428cc62878f038186d632
Contents?: true
Size: 1.09 KB
Versions: 7
Compression:
Stored size: 1.09 KB
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 # Stdout formatter for the results of the Uniformity plugin. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class PluginFormatters::Uniformity < Arachni::Plugin::Formatter def run print_info 'Relevant issues:' print_info '--------------------' results.each do |digests| issue = report.issue_by_digest( digests.first ) print_ok "#{issue.name} in #{issue.vector.type} input" << " '#{issue.affected_input_name}' using #{issue.vector.method.to_s.upcase}" << ' at the following pages:' digests.each do |digest| print_info " * #{report.issue_by_digest( digest ).vector.action}" end print_line end end end end
Version data entries
7 entries across 7 versions & 1 rubygems