mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
6063908cd4
git-svn-id: file:///home/svn/incoming/trunk@3213 4d416f70-5f16-0410-b530-b9f4589650da
16 lines
258 B
Ruby
Executable File
16 lines
258 B
Ruby
Executable File
#!/usr/bin/ruby
|
|
#
|
|
# This user interface provides users with a command console interface to the
|
|
# framework.
|
|
#
|
|
|
|
$:.unshift(File.join(File.dirname(__FILE__), 'lib'))
|
|
|
|
require 'rex'
|
|
require 'msf/ui'
|
|
|
|
begin
|
|
Msf::Ui::Console::Driver.new.run
|
|
rescue Interrupt
|
|
end
|