1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-09-18 14:00:12 +02:00
metasploit-framework/msfconsole
HD Moore 88658064df /usr/bin/ruby vs /usr/bin/env ruby
git-svn-id: file:///home/svn/incoming/trunk@3242 4d416f70-5f16-0410-b530-b9f4589650da
2005-12-17 06:46:23 +00:00

16 lines
262 B
Ruby
Executable File

#!/usr/bin/env 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