2016-06-28 15:23:12 -05:00
|
|
|
module Msf
|
2016-06-28 16:13:49 -05:00
|
|
|
module Exploit::Remote::SSH
|
2016-08-22 09:56:07 -05:00
|
|
|
require 'rex/socket/ssh_factory'
|
2016-06-28 16:13:49 -05:00
|
|
|
def ssh_socket_factory
|
2016-07-19 16:37:19 -05:00
|
|
|
Rex::Socket::SSHFactory.new(framework, self, datastore['Proxies'])
|
2016-06-28 15:23:12 -05:00
|
|
|
end
|
|
|
|
|
end
|
2016-07-19 16:37:19 -05:00
|
|
|
end
|