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.
1 parent f556a5f commit bf2fb70Copy full SHA for bf2fb70
lib/msf/core/post.rb
@@ -29,9 +29,13 @@ class Failed < RuntimeError
29
30
def setup
31
m = replicant
32
+
33
if m.actions.length > 0 && !m.action
34
raise Msf::MissingActionError, "Please use: #{m.actions.collect {|e| e.name} * ", "}"
35
end
36
37
+ # PostMixin
38
+ super
39
40
41
def type
lib/msf/core/post_mixin.rb
@@ -39,8 +39,6 @@ def setup
print_warning('SESSION may not be compatible with this module.')
42
- super
43
-
44
check_for_session_readiness() if session.type == "meterpreter"
45
46
@session.init_ui(self.user_input, self.user_output)
0 commit comments