2005-07-13 21:09:07 +00:00
|
|
|
#!/usr/bin/ruby
|
2005-11-28 21:38:48 +00:00
|
|
|
#
|
|
|
|
# This user interface provides users with a command console interface to the
|
|
|
|
# framework.
|
|
|
|
#
|
2005-07-13 21:09:07 +00:00
|
|
|
|
2005-12-06 03:34:58 +00:00
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
|
2005-05-22 19:39:21 +00:00
|
|
|
|
2005-07-09 21:22:32 +00:00
|
|
|
require 'rex'
|
|
|
|
require 'msf/ui'
|
2005-05-22 19:39:21 +00:00
|
|
|
|
2005-12-13 06:27:34 +00:00
|
|
|
begin
|
|
|
|
Msf::Ui::Console::Driver.new.run
|
|
|
|
rescue Interrupt
|
|
|
|
end
|