Sha256: 885e79aa81198a69c21c0320c12581e34d93fe4a88338ebdef19b966f08de441
Contents?: true
Size: 1.09 KB
Versions: 5
Compression:
Stored size: 1.09 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 Stdout module PluginFormatters # # Stdout 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 print_status( 'HTTP dictionary attacker' ) print_info( '~~~~~~~~~~~~~~~~~~~~~~~~~~' ) print_info( 'Description: ' + @description ) print_line print_info( "Cracked credentials:" ) print_ok( ' Username: ' + @results[:username] ) print_ok( ' Password: ' + @results[:password] ) print_line end end end end end end
Version data entries
5 entries across 5 versions & 1 rubygems