Moving nextgen from a branch to the trunk!!!

git-svn-id: https://beef.googlecode.com/svn/trunk@908 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
scotty.b.brown@gmail.com
2011-04-20 07:54:56 +00:00
parent af413eecdb
commit 35f62714b1
502 changed files with 69628 additions and 0 deletions

41
core/loader.rb Normal file
View File

@@ -0,0 +1,41 @@
#
# Include here all the gems we are using
#
require 'rubygems'
require 'webrick'
require 'webrick/httpproxy'
require 'dm-core'
require 'dm-migrations'
require 'json'
require 'ansi'
require 'optparse'
require 'cgi'
require 'yaml'
require 'singleton'
require 'ipaddr'
require 'base64'
require 'xmlrpc/client'
require 'erubis'
require 'openssl'
require 'term/ansicolor'
# Include the filters
require 'core/filters'
# Include our patches for ruby and gems
require 'core/ruby'
# Include the API
require 'core/api'
# Include the settings
require 'core/settings'
# Include the core of BeEF
require 'core/core'
# Include the extensions
require 'core/extensions'
# Include the modules
require 'core/modules'