Files
metasploit-gs/dev/old_msfweb
T

61 lines
1.5 KiB
Ruby
Raw Normal View History

2005-12-17 06:46:23 +00:00
#!/usr/bin/env ruby
2005-11-28 21:38:48 +00:00
#
# This user interface provides users with a web-based interface to the
# framework that can be shared.
#
2005-11-22 03:20:09 +00:00
2006-07-31 15:36:08 +00:00
msfbase = File.symlink?(__FILE__) ? File.readlink(__FILE__) : __FILE__
$:.unshift(File.join(File.dirname(msfbase), 'lib'))
2005-11-22 03:20:09 +00:00
require 'rex'
require 'msf/ui'
# Declare the argument parser for msfweb
arguments = Rex::Parser::Arguments.new(
"-a" => [ true, "Bind to this IP address instead of loopback" ],
"-p" => [ true, "Bind to this port instead of 55555" ],
"-v" => [ true, "A number between 0 and 3 that controls log verbosity" ],
"-d" => [ false, "Daemonize the web server" ],
2005-11-22 03:20:09 +00:00
"-h" => [ false, "Help banner" ])
opts = {}
background = false
2005-11-22 03:20:09 +00:00
# Parse command line arguments.
arguments.parse(ARGV) { |opt, idx, val|
case opt
when "-a"
opts['ServerHost'] = val
when "-p"
opts['ServerPort'] = val
when "-v"
opts['LogLevel'] = val
when "-d"
background = true
2005-11-22 03:20:09 +00:00
when "-h"
print(
"\nUsage: msfweb <options>\n" +
arguments.usage)
exit
end
}
$stdout.puts(
"Connect to msfweb at http://" +
( opts['ServerHost'] ? opts['ServerHost'] : '127.0.0.1' ) +
':' +
2006-07-31 14:03:50 +00:00
( opts['ServerPort'] ? opts['ServerPort'] : '55555') +
'/'
)
exit if (Process.fork()) unless background == false
begin
# Create the driver instance and run it.
Msf::Ui::Web::Driver.new(opts).run
rescue Interrupt
$stdout.puts("Shutting down msfweb...")
exit(0)
end