Sha256: d9dd7d1304ef79580a0d3f930486e9dbe89a3d4c115d08e0539f21af162be6ea
Contents?: true
Size: 919 Bytes
Versions: 5
Compression:
Stored size: 919 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 require 'ap' # # Awesome prints an {Report#to_hash} hash. # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> # # @version 0.1.1 # class Arachni::Reporters::AP < Arachni::Reporter::Base def run print_line print_status 'Awesome printing Report as a Hash...' ap report.to_hash print_status 'Done!' end def self.info { name: 'AP', description: %q{Awesome prints a scan report hash.}, author: 'Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com>', version: '0.1.1' } end end
Version data entries
5 entries across 5 versions & 1 rubygems