27 lines
701 B
Ruby
Executable File
27 lines
701 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
|
|
#
|
|
# Copyright (c) 2006-2017 Wade Alcorn - wade@bindshell.net
|
|
# Browser Exploitation Framework (BeEF) - http://beefproject.com
|
|
# See the file 'doc/COPYING' for copying permission
|
|
#
|
|
|
|
puts "\nWelcome to the BeEF installer!"
|
|
|
|
if RUBY_VERSION < '2.2'
|
|
puts "\n"
|
|
puts "Ruby version #{RUBY_VERSION} is no longer supported. Please upgrade to Ruby version 2.2 or later."
|
|
puts "\n"
|
|
exit 1
|
|
end
|
|
|
|
puts "\nPlease make sure you have installed SQLite before proceeding. For instructions on how to do this please see the README file"
|
|
|
|
puts "\nInstall Bundler: gem install bundler"
|
|
|
|
puts "\nRun bundler in your BeEF folder: bundle install"
|
|
|
|
puts "\nRun BeEF: ./beef"
|
|
|
|
#Testing fork regroup
|