Sha256: e7429de9174370b1746b09cb21f9cad5ad054872ac047ed006c83e5d1c729fc6
Contents?: true
Size: 1.08 KB
Versions: 2
Compression:
Stored size: 1.08 KB
Contents
=begin Copyright 2010-2017 Sarosys LLC <http://www.sarosys.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
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
arachni-1.5.1 | components/reporters/plugin_formatters/stdout/uniformity.rb |
arachni-1.5 | components/reporters/plugin_formatters/stdout/uniformity.rb |