Files
metasploit-gs/tools/exploit/msf_irb_shell.rb
T
2021-03-24 14:52:19 -05:00

27 lines
608 B
Ruby
Executable File

#!/usr/bin/env ruby
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##
begin
msfbase = __FILE__
while File.symlink?(msfbase)
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
end
$:.unshift(File.expand_path(File.join(File.dirname(msfbase), '..', '..', 'lib')))
require 'msfenv'
$:.unshift(ENV['MSF_LOCAL_LIB']) if ENV['MSF_LOCAL_LIB']
require 'rex'
framework = Msf::Simple::Framework.create
Rex::Ui::Text::IrbShell.new(binding).run
rescue SignalException => e
puts("Aborted! #{e}")
end