Files
metasploit-gs/msfconsole
T

131 lines
3.0 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
#
2010-05-03 17:13:09 +00:00
# $Id$
#
2005-11-28 21:38:48 +00:00
# This user interface provides users with a command console interface to the
# framework.
#
2010-05-03 17:13:09 +00:00
# $Revision$
#
msfbase = __FILE__
while File.symlink?(msfbase)
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
end
$:.unshift(File.join(File.expand_path(File.dirname(msfbase)), 'lib'))
$:.unshift(ENV['MSF_LOCAL_LIB']) if ENV['MSF_LOCAL_LIB']
2005-05-22 19:39:21 +00:00
2006-04-02 16:28:02 +00:00
require 'optparse'
2007-02-21 15:15:59 +00:00
if(RUBY_PLATFORM =~ /mswin32/)
$stderr.puts "[*] The msfconsole interface is not supported on the native Windows Ruby\n"
$stderr.puts " interpreter. Things will break, exploits will fail, payloads will not\n"
$stderr.puts " be handled correctly. Please install Cygwin or use Linux in VMWare.\n\n"
end
2006-04-02 16:28:02 +00:00
class OptsConsole
#
# Return a hash describing the options.
#
def self.parse(args)
options = {}
opts = OptionParser.new do |opts|
opts.banner = "Usage: msfconsole [options]"
opts.separator ""
opts.separator "Specific options:"
2007-01-30 04:48:35 +00:00
opts.on("-d", "-d", "Execute the console as defanged") do
options['Defanged'] = true
end
2006-04-02 16:28:02 +00:00
opts.on("-r", "-r <filename>", "Execute the specified resource file") do |r|
options['Resource'] ||= []
options['Resource'] << r
2006-04-02 16:28:02 +00:00
end
opts.on("-c", "-c <filename>", "Load the specified configuration file") do |c|
options['Config'] = c
end
opts.on("-m", "-m <directory>", "Specifies an additional module search path") do |m|
options['ModulePath'] = m
end
opts.on("-y", "--yaml <database.yml>", "Specify a YAML file containing database settings") do |m|
options['DatabaseYAML'] = m
end
opts.on("-e", "--environment <production|development>", "Specify the database environment to load from the YAML") do |m|
options['DatabaseEnv'] = m
end
2006-04-02 16:28:02 +00:00
# Boolean switch.
opts.on("-v", "--version", "Show version") do |v|
options['Version'] = true
end
2010-05-03 17:13:09 +00:00
# Boolean switch.
opts.on("-L", "--real-readline", "Use the system Readline library instead of RbReadline") do |v|
options['RealReadline'] = true
end
2010-05-03 17:13:09 +00:00
# Boolean switch.
opts.on("-n", "--no-database", "Disable database support") do |v|
options['DisableDatabase'] = true
end
2006-04-02 16:28:02 +00:00
opts.separator ""
opts.separator "Common options:"
opts.on_tail("-h", "--help", "Show this message") do
puts opts
exit
end
end
2009-11-29 23:47:03 +00:00
begin
opts.parse!(args)
rescue OptionParser::InvalidOption
puts "Invalid option, try -h for usage"
exit
end
2009-02-15 19:27:53 +00:00
options
2006-04-02 16:28:02 +00:00
end
end
options = OptsConsole.parse(ARGV)
#
# NOTE: we don't require this until down here since we may not need it
# when processing certain options (currently only -h)
#
2010-10-09 00:06:30 +00:00
require 'rex'
require 'msf/ui'
2010-10-09 00:06:30 +00:00
#
# Everything below this line requires the framework.
#
#
# XXX: It would be nice to not have to load the entire framework just to get
# the version number.
#
2006-04-02 16:28:02 +00:00
if (options['Version'])
$stderr.puts 'Framework Version: ' + Msf::Framework::Version
exit
end
2005-05-22 19:39:21 +00:00
begin
2006-04-02 16:28:02 +00:00
Msf::Ui::Console::Driver.new(
Msf::Ui::Console::Driver::DefaultPrompt,
Msf::Ui::Console::Driver::DefaultPromptChar,
options
).run
rescue Interrupt
end