10 lines
317 B
Ruby
Executable File
10 lines
317 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
# -*- coding: binary -*-
|
|
#
|
|
# Starts the HTTP DB Service interface
|
|
|
|
|
|
require 'pathname'
|
|
require Pathname.new(__FILE__).realpath.expand_path.parent.join('config', 'boot')
|
|
require 'msf/core/db_manager/http/http_db_manager_service'
|
|
HttpDBManagerService.new().start(:Port => '8080', :Host => '0.0.0.0') |