Sha256: 3467af06d59da61c54a12302332a24f9b7a1a8f20e0c711b1ab3922edb457da7
Contents?: true
Size: 1.08 KB
Versions: 5
Compression:
Stored size: 1.08 KB
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 # 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
5 entries across 5 versions & 1 rubygems