Sha256: 939a487f165113828fbc4885a7a5a0e5363a3721d13955944347b8a8c5a2ef20
Contents?: true
Size: 1.45 KB
Versions: 5
Compression:
Stored size: 1.45 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::HTML # HTML formatter for the results of the AutoLogin plugin # # @author Tasos "Zapotek" Laskos <tasos.laskos@arachni-scanner.com> class PluginFormatters::AutoLogin < Arachni::Plugin::Formatter include TemplateUtilities def run ERB.new( tpl ).result( binding ) end def tpl <<-HTML <% if results['status'] == 'ok' %> <p class="alert alert-success"> <%= results['message'] %> </p> <h3>Cookies set to:</h3> <dl class="dl-horizontal"> <% results['cookies'].each do |k, v| %> <dt> <code><%= escapeHTML( k ) %></code> </dt> <dd> <code><%= escapeHTML( v ) %></code> </dd> <% end %> </dl> <% else %> <p class="alert alert-danger"> <%= results['message'] %> </p> <% end %> HTML end end end
Version data entries
5 entries across 5 versions & 1 rubygems