ab33e5403d
git-svn-id: file:///home/svn/framework3/trunk@7475 4d416f70-5f16-0410-b530-b9f4589650da
16 lines
222 B
Ruby
16 lines
222 B
Ruby
#!/usr/bin/env ruby
|
|
|
|
File.umask(0022)
|
|
|
|
|
|
msf3 = '/msf3'
|
|
if ! File.directory?(msf3)
|
|
puts "[*] This Metasploit Framework installation is corrupted."
|
|
exit(1)
|
|
end
|
|
|
|
Dir.chdir(msf3)
|
|
targ = ARGV.shift
|
|
exec("ruby", targ, *ARGV)
|
|
|