19ba7772f3
This reverts commit 149c3ecc63.
Conflicts:
lib/metasploit/framework/command/base.rb
lib/metasploit/framework/common_engine.rb
lib/metasploit/framework/require.rb
lib/msf/core/modules/namespace.rb
modules/auxiliary/analyze/jtr_postgres_fast.rb
modules/auxiliary/scanner/smb/smb_login.rb
msfconsole
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
|