We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 53253bf + 40fafaa commit 55b71e1Copy full SHA for 55b71e1
lib/msf/core/rpc/v10/service.rb
@@ -76,6 +76,7 @@ def start
76
77
def stop
78
self.service.stop
79
+ self.service.deref
80
end
81
82
def wait
plugins/msgrpc.rb
@@ -21,12 +21,12 @@ class Plugin::MSGRPC < Msf::Plugin
21
#
22
# The default local hostname that the server listens on.
23
24
- DefaultHost = "127.0.0.1"
+ DefaultHost ||= "127.0.0.1"
25
26
27
# The default local port that the server listens on.
28
29
- DefaultPort = 55552
+ DefaultPort ||= 55552
30
31
32
# ServerPort
0 commit comments