2009-10-25 05:05:54 +00:00
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2009-10-25 05:05:54 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
|
|
|
|
class Metasploit3 < Msf::Auxiliary
|
|
|
|
|
|
|
|
include Msf::Exploit::Remote::SMB
|
|
|
|
include Msf::Auxiliary::Fuzzer
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(update_info(info,
|
|
|
|
'Name' => 'SMB Tree Connect Request Fuzzer',
|
|
|
|
'Description' => %q{
|
|
|
|
This module sends a series of SMB tree connect
|
|
|
|
requests using malicious strings.
|
|
|
|
},
|
|
|
|
'Author' => [ 'hdm' ],
|
2013-01-03 00:01:18 +00:00
|
|
|
'License' => MSF_LICENSE
|
2009-10-25 05:05:54 +00:00
|
|
|
))
|
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
def do_smb_connect(pkt,opts={})
|
|
|
|
@connected = false
|
|
|
|
connect
|
|
|
|
simple.login(
|
2010-04-30 08:40:19 +00:00
|
|
|
datastore['SMBName'],
|
2009-10-25 05:05:54 +00:00
|
|
|
datastore['SMBUser'],
|
|
|
|
datastore['SMBPass'],
|
|
|
|
datastore['SMBDomain']
|
2010-04-30 08:40:19 +00:00
|
|
|
)
|
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
@connected = true
|
|
|
|
simple.connect("\\\\#{datastore['RHOST']}\\#{pkt}")
|
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
def run
|
|
|
|
last_str = nil
|
|
|
|
last_inp = nil
|
|
|
|
last_err = nil
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
cnt = 0
|
|
|
|
|
|
|
|
fuzz_strings do |str|
|
|
|
|
cnt += 1
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
if(cnt % 100 == 0)
|
|
|
|
print_status("Fuzzing with iteration #{cnt} using #{@last_fuzzer_input}")
|
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
begin
|
|
|
|
do_smb_connect(str, 0.25)
|
|
|
|
rescue ::Interrupt
|
|
|
|
print_status("Exiting on interrupt: iteration #{cnt} using #{@last_fuzzer_input}")
|
|
|
|
raise $!
|
|
|
|
rescue ::Exception => e
|
|
|
|
last_err = e
|
|
|
|
ensure
|
|
|
|
disconnect
|
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
if(not @connected)
|
|
|
|
if(last_str)
|
|
|
|
print_status("The service may have crashed: iteration:#{cnt-1} method=#{last_inp} string=#{last_str.unpack("H*")[0]} error=#{last_err}")
|
|
|
|
else
|
2010-04-30 08:40:19 +00:00
|
|
|
print_status("Could not connect to the service: #{last_err}")
|
2009-10-25 05:05:54 +00:00
|
|
|
end
|
|
|
|
return
|
|
|
|
end
|
2010-04-30 08:40:19 +00:00
|
|
|
|
2009-10-25 05:05:54 +00:00
|
|
|
last_str = str
|
|
|
|
last_inp = @last_fuzzer_input
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|