From f7fc409e726247282b924990922890d2895e7e1d Mon Sep 17 00:00:00 2001 From: RageLtMan Date: Fri, 29 Dec 2017 01:35:23 -0500 Subject: [PATCH] Require rex/socket/ssl in framework.rb Add an explicit require for the new socket/ssl.rb in framework.rb in case it has not yet been loaded. This should address the Travis failure on initial PR, although the gem version in socket has not been updated, so this might take a bit to propagate. In the end, if the dependency already gives us this functionality by the time we call Rex::Socket::Ssl then this commit can safely be dropped --- lib/msf/core/framework.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/msf/core/framework.rb b/lib/msf/core/framework.rb index 1fbc7bad24e32..942d867c0d836 100644 --- a/lib/msf/core/framework.rb +++ b/lib/msf/core/framework.rb @@ -61,6 +61,7 @@ module Offspring require 'msf/core/db_manager' require 'msf/core/event_dispatcher' require 'rex/json_hash_file' + require 'rex/socket/ssl' # # Creates an instance of the framework context.