You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# @param (see Msf::Modules::Loader::Base#read_module_content_from_path)
91
117
# @return (see Msf::Modules::Loader::Base#read_module_content_from_path)
92
118
defread_module_content_from_path(full_path)
93
-
unlessFile.executable?(full_path)
119
+
unlessscript_path?(full_path)
94
120
load_error(full_path,Errno::ENOENT.new)
95
121
return''
96
122
end
123
+
unlessscript_runtime_available?(full_path)
124
+
load_error(full_path,RuntimeError.new("Unable to load module as the following runtime was not found on the path: #{read_script_env_runtime(full_path)}"))
0 commit comments