Sha256: 6c0c4c993abc7b952a7bc7b3854fdb0c8b87d58d9ab6ec7074fa734363048ddb
Contents?: true
Size: 862 Bytes
Versions: 6
Compression:
Stored size: 862 Bytes
Contents
=begin Copyright 2010-2015 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 # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class PluginFormatters::Exec < Arachni::Plugin::Formatter def run results.each do |stage, data| print_status "#{stage}: #{data['executable']}" print_info "Status: #{data['status']}" print_info "PID: #{data['pid']}" print_info "Runtime: #{data['runtime']}" print_info "STDOUT: #{data['stdout']}" print_info "STDERR: #{data['stderr']}" end end end end
Version data entries
6 entries across 6 versions & 1 rubygems