# BeEF's Gemfile # # Copyright (c) 2006-2016 Wade Alcorn - wade@bindshell.net # Browser Exploitation Framework (BeEF) - http://beefproject.com # See the file 'doc/COPYING' for copying permission # gem 'eventmachine' gem 'thin' gem 'sinatra' gem 'rack' gem 'em-websocket', '~> 0.3.6' # WebSocket support gem 'uglifier' gem 'mime-types' # Windows support if RUBY_PLATFORM.downcase.include?('mswin') || RUBY_PLATFORM.downcase.include?('mingw') # make sure you install this gem following https://github.com/eakmotion/therubyracer_for_windows gem 'therubyracer', '~> 0.11.0beta1' gem 'execjs' elsif !RUBY_PLATFORM.downcase.include?('darwin') gem 'therubyracer', '0.11.3' gem 'execjs' end gem 'ansi' gem 'term-ansicolor', :require => 'term/ansicolor' gem 'dm-core' gem 'json' gem 'data_objects' gem 'rubyzip', '>= 1.0.0' # SQLite support group :sqlite do gem 'dm-sqlite-adapter' end # PostgreSQL support group :postgres do #gem dm-postgres-adapter end # MySQL support group :mysql do #gem dm-mysql-adapter end # Geolocation support group :geoip do gem 'geoip' end gem 'parseconfig' gem 'erubis' gem 'dm-migrations' # Metasploit Integration extension group :ext_msf do gem 'msfrpc-client' end # Twitter Notifications extension group :ext_twitter do #gem 'twitter', '>= 5.0.0' end # DNS extension group :ext_dns do gem 'rubydns', '0.7.0' end # network extension group :ext_network do gem 'dm-serializer' end # QRcode extension group :ext_qrcode do gem 'qr4r' end # For running unit tests group :test do if ENV['BEEF_TEST'] gem 'test-unit' gem 'test-unit-full' gem 'curb' gem 'selenium' gem 'selenium-webdriver' gem 'rspec' gem 'bundler-audit' # nokogirl is needed by capybara which may require one of the below commands # sudo apt-get install libxslt-dev libxml2-dev # sudo port install libxml2 libxslt gem 'capybara' # RESTful API tests/generic command module tests gem 'rest-client', '~> 1.8.0' end end source 'https://rubygems.org'