2005-10-03 13:51:05 +00:00
|
|
|
require 'rex/proto/smb'
|
|
|
|
require 'rex/proto/dcerpc'
|
2006-06-13 21:27:01 +00:00
|
|
|
require 'rex/encoder/ndr'
|
2005-10-03 13:51:05 +00:00
|
|
|
|
|
|
|
module Msf
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# This mixin provides utility methods for interacting with a SMB/CIFS service on
|
|
|
|
# a remote machine. These methods may generally be useful in the context of
|
|
|
|
# exploitation. This mixin extends the Tcp exploit mixin. Only one SMB
|
|
|
|
# service can be accessed at a time using this class.
|
|
|
|
#
|
|
|
|
###
|
|
|
|
|
|
|
|
module Exploit::Remote::SMB
|
|
|
|
|
|
|
|
include Exploit::Remote::Tcp
|
|
|
|
SIMPLE = Rex::Proto::SMB::SimpleClient
|
|
|
|
XCEPT = Rex::Proto::SMB::Exceptions
|
2006-09-14 05:51:24 +00:00
|
|
|
CONST = Rex::Proto::SMB::Constants
|
2005-10-03 13:51:05 +00:00
|
|
|
|
2005-11-15 23:02:17 +00:00
|
|
|
# Alias over the Rex DCERPC protocol modules
|
|
|
|
DCERPCPacket = Rex::Proto::DCERPC::Packet
|
|
|
|
DCERPCClient = Rex::Proto::DCERPC::Client
|
|
|
|
DCERPCResponse = Rex::Proto::DCERPC::Response
|
|
|
|
DCERPCUUID = Rex::Proto::DCERPC::UUID
|
2006-06-13 21:27:01 +00:00
|
|
|
NDR = Rex::Encoder::NDR
|
2005-12-13 06:08:40 +00:00
|
|
|
|
2005-10-03 13:51:05 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super
|
|
|
|
|
2006-04-30 19:49:27 +00:00
|
|
|
register_evasion_options(
|
2005-11-15 23:02:17 +00:00
|
|
|
[
|
2006-04-30 19:49:27 +00:00
|
|
|
OptBool.new('SMB::pipe_evasion', [ true, 'Enable segmented read/writes for SMB Pipes', 'False']),
|
|
|
|
OptInt.new('SMB::pipe_write_min_size', [ true, 'Minimum buffer size for pipe writes', 1]),
|
|
|
|
OptInt.new('SMB::pipe_write_max_size', [ true, 'Maximum buffer size for pipe writes', 1024]),
|
|
|
|
OptInt.new('SMB::pipe_read_min_size', [ true, 'Minimum buffer size for pipe reads', 1]),
|
|
|
|
OptInt.new('SMB::pipe_read_max_size', [ true, 'Maximum buffer size for pipe reads', 1024]),
|
|
|
|
OptInt.new('SMB::pad_data_level', [ true, 'Place extra padding between headers and data (level 0-3)', 0]),
|
|
|
|
OptInt.new('SMB::pad_file_level', [ true, 'Obscure path names used in open/create (level 0-3)', 0]),
|
|
|
|
OptInt.new('SMB::obscure_trans_pipe_level', [ true, 'Obscure PIPE string in TransNamedPipe (level 0-3)', 0]),
|
|
|
|
|
2005-11-15 23:02:17 +00:00
|
|
|
], Msf::Exploit::Remote::SMB)
|
|
|
|
|
2005-10-03 13:51:05 +00:00
|
|
|
register_options(
|
|
|
|
[
|
|
|
|
Opt::RHOST,
|
2005-11-15 23:02:17 +00:00
|
|
|
OptInt.new('RPORT', [ true, 'Set the SMB service port', 445]),
|
|
|
|
OptBool.new('SMBDirect', [ true, 'The target port is a raw SMB service (not NetBIOS)', 'True' ]),
|
|
|
|
OptString.new('SMBUSER', [ false, 'The username to authenticate as', '']),
|
|
|
|
OptString.new('SMBPASS', [ false, 'The password for the specified username', '']),
|
|
|
|
OptString.new('SMBDOM', [ false, 'The Windows domain to use for authentication', 'WORKGROUP']),
|
|
|
|
OptString.new('SMBNAME', [ true, 'The NetBIOS hostname (required for port 139 connections)', '*SMBSERVER'])
|
2005-10-03 13:51:05 +00:00
|
|
|
|
|
|
|
], Msf::Exploit::Remote::SMB)
|
|
|
|
end
|
|
|
|
|
2006-01-27 05:33:08 +00:00
|
|
|
def connect()
|
|
|
|
|
2005-12-31 18:03:02 +00:00
|
|
|
disconnect()
|
|
|
|
|
|
|
|
super
|
2006-01-27 05:33:08 +00:00
|
|
|
|
2005-12-13 06:08:40 +00:00
|
|
|
self.simple = SIMPLE.new(self.sock, datastore['SMBDirect'])
|
|
|
|
|
2006-01-27 05:33:08 +00:00
|
|
|
# setup pipe evasion foo
|
2006-04-30 19:49:27 +00:00
|
|
|
if datastore['SMB::pipe_evasion']
|
2006-01-27 05:33:08 +00:00
|
|
|
# XXX - insert code to change the instance of the read/write functions to do segmentation
|
|
|
|
end
|
2006-04-30 19:49:27 +00:00
|
|
|
|
|
|
|
if (datastore['SMB::pad_data_level'])
|
|
|
|
self.simple.client.evasion_opts['pad_data'] = datastore['SMB::pad_data_level']
|
|
|
|
end
|
|
|
|
|
|
|
|
if (datastore['SMB::pad_file_level'])
|
|
|
|
self.simple.client.evasion_opts['pad_file'] = datastore['SMB::pad_file_level']
|
|
|
|
end
|
|
|
|
|
|
|
|
if (datastore['SMB::obscure_trans_pipe_level'])
|
|
|
|
self.simple.client.evasion_opts['obscure_trans_pipe'] = datastore['SMB::obscure_trans_pipe_level']
|
2005-12-13 06:08:40 +00:00
|
|
|
end
|
2006-01-27 05:33:08 +00:00
|
|
|
end
|
2005-12-13 06:08:40 +00:00
|
|
|
|
2005-11-16 17:56:07 +00:00
|
|
|
# Convert a standard ASCII string to 16-bit Unicode
|
2006-04-30 19:49:27 +00:00
|
|
|
def unicode(str)
|
2005-11-26 02:34:39 +00:00
|
|
|
Rex::Text.to_unicode(str)
|
2005-11-16 17:56:07 +00:00
|
|
|
end
|
|
|
|
|
2005-11-17 04:25:30 +00:00
|
|
|
# This method establishes a SMB session over the default socket
|
2005-10-03 13:51:05 +00:00
|
|
|
def smb_login
|
|
|
|
simple.login(
|
|
|
|
datastore['SMBNAME'],
|
|
|
|
datastore['SMBUSER'],
|
|
|
|
datastore['SMBPASS'],
|
|
|
|
datastore['SMBDOM']
|
|
|
|
)
|
2005-11-15 23:02:17 +00:00
|
|
|
|
|
|
|
simple.connect('IPC$')
|
2005-10-03 13:51:05 +00:00
|
|
|
end
|
2005-11-17 04:25:30 +00:00
|
|
|
|
|
|
|
# This method returns the native operating system of the peer
|
2005-10-03 13:51:05 +00:00
|
|
|
def smb_peer_os
|
|
|
|
self.simple.client.peer_native_os
|
|
|
|
end
|
|
|
|
|
2005-11-17 04:25:30 +00:00
|
|
|
# This method returns the native lanman version of the peer
|
2005-10-03 13:51:05 +00:00
|
|
|
def smb_peer_lm
|
|
|
|
self.simple.client.peer_native_lm
|
|
|
|
end
|
|
|
|
|
2005-11-17 04:25:30 +00:00
|
|
|
# This method opens a handle to an IPC pipe
|
2005-10-03 13:51:05 +00:00
|
|
|
def smb_create(pipe)
|
|
|
|
self.simple.create_pipe(pipe)
|
|
|
|
end
|
2005-11-15 23:02:17 +00:00
|
|
|
|
2005-11-29 02:57:04 +00:00
|
|
|
def smb_hostname
|
|
|
|
datastore['SMBNAME'] || '*SMBSERVER'
|
|
|
|
end
|
|
|
|
|
2005-11-15 23:02:17 +00:00
|
|
|
attr_accessor :simple
|
2005-10-03 13:51:05 +00:00
|
|
|
|
|
|
|
end
|
|
|
|
end
|