Sha256: 3cf5c65466e4a455cfe9b48e0abf132148e1fdd055935d248cc57d2b087b5ce9
Contents?: true
Size: 940 Bytes
Versions: 2
Compression:
Stored size: 940 Bytes
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 CookieCollector plugin # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class PluginFormatters::CookieCollector < Arachni::Plugin::Formatter def run results.each_with_index do |result, i| print_info "[#{(i + 1).to_s}] On #{result['time']}" print_info "URL: #{result['response']['url']}" print_info 'Cookies forced to: ' result['cookies'].each_pair do |name, value| print_info " #{name} => #{value}" 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/cookie_collector.rb |
arachni-1.5 | components/reporters/plugin_formatters/stdout/cookie_collector.rb |