ebf61bef22
MSP-9653 Rails::Engine version of Metasploit::Framework::Application that can be used by downstream projects, like Pro to get the shared behaviors, like modules path adding, meterpreter extension merging, and binary default encoding.
20 lines
235 B
Ruby
20 lines
235 B
Ruby
#
|
|
# Gems
|
|
#
|
|
|
|
require 'rails/engine'
|
|
|
|
#
|
|
# Project
|
|
#
|
|
|
|
require 'metasploit/framework/common_engine'
|
|
|
|
module Metasploit
|
|
module Framework
|
|
class Engine < Rails::Engine
|
|
include Metasploit::Framework::CommonEngine
|
|
end
|
|
end
|
|
end
|