1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-10-09 04:26:11 +02:00

Move msfdb_ws since it is deprecated by msfdb

This commit is contained in:
Matthew Kienow 2019-01-09 23:40:02 -05:00
parent f636982b09
commit 5e28bccda9
No known key found for this signature in database
GPG Key ID: 40787F8B1EAC6E41
3 changed files with 3 additions and 3 deletions

View File

@ -100,7 +100,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'redcarpet'
# Needed for Microsoft patch finding tool (msu_finder)
spec.add_runtime_dependency 'patch_finder'
# Required for msfdb_ws (Metasploit data base as a webservice)
# Required for Metasploit Web Services
spec.add_runtime_dependency 'thin'
spec.add_runtime_dependency 'sinatra'
spec.add_runtime_dependency 'warden'

View File

@ -112,7 +112,7 @@ RSpec.configure do |config|
if ENV['REMOTE_DB']
require 'metasploit/framework/data_service/remote/managed_remote_data_service'
opts = {}
opts[:process_name] = 'msfdb_ws'
opts[:process_name] = File.join('tools', 'dev', 'msfdb_ws')
opts[:host] = 'localhost'
opts[:port] = '8080'

View File

@ -15,7 +15,7 @@ end
def require_deps
require 'pathname'
require Pathname.new(__FILE__).realpath.expand_path.parent.join('config', 'boot')
require Pathname.new(__FILE__).realpath.expand_path.parent.parent.parent.join('config', 'boot')
require 'msf/core/web_services/http_db_manager_service'
end