Sha256: d5bafef37d4977276d879c006c9bbbe00436ab9ba7e6cd0cdbe423c9f6f7ad11
Contents?: true
Size: 1.01 KB
Versions: 5
Compression:
Stored size: 1.01 KB
Contents
=begin Arachni Copyright (c) 2010-2012 Tasos "Zapotek" Laskos <tasos.laskos@gmail.com> This is free software; you can copy and distribute and modify this program under the term of the GPL v2.0 License (See LICENSE file for details) =end module Arachni module Reports class HTML module PluginFormatters # # XML formatter for the results of the HTTPDicattack plugin # # @author: Tasos "Zapotek" Laskos # <tasos.laskos@gmail.com> # <zapotek@segfault.gr> # @version: 0.1 # class HTTPDicattack < Arachni::Plugin::Formatter def run return ERB.new( tpl ).result( binding ) end def tpl %q{ <h3>Credentials</h3> <strong>Username</strong>: <%=CGI.escapeHTML(@results[:username])%> <br/> <strong>Password</strong>: <%=CGI.escapeHTML(@results[:password])%> } end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems