b6dff719f3
added hard require for SSHFactory into the ssh exploit mixin this should prevent any laod-order bugs from cropping up again
9 lines
196 B
Ruby
9 lines
196 B
Ruby
module Msf
|
|
module Exploit::Remote::SSH
|
|
require 'rex/socket/ssh_factory'
|
|
def ssh_socket_factory
|
|
Rex::Socket::SSHFactory.new(framework, self, datastore['Proxies'])
|
|
end
|
|
end
|
|
end
|