mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
9e16c98567
git-svn-id: file:///home/svn/incoming/trunk@3176 4d416f70-5f16-0410-b530-b9f4589650da
13 lines
230 B
Ruby
Executable File
13 lines
230 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'
|
|
|
|
Msf::Ui::Console::Driver.new.run
|