require new gems inside rex.rb

have the root rex namespace require the new rex gems
to prevent broken requires when things greedily require all of rex
bug/bundler_fix
David Maloney 2016-07-05 10:33:45 -05:00
parent f9f47f7a79
commit 85937ab839
No known key found for this signature in database
GPG Key ID: DEDBA9DC3A913DB2
1 changed files with 16 additions and 0 deletions

View File

@ -38,6 +38,22 @@ module Rex
LogSource = "rex"
end
#
# REX Gems
#
# Text manipulation library for things like generating random string
require 'rex/text'
# Library for Generating Randomized strings valid as Identifiers such as variable names
require 'rex/random_identifier'
# library for creating Powershell scripts for exploitation purposes
require 'rex/powershell'
# Library for processing and creating Zip compatbile archives
require 'rex/zip'
# Library for parsing offline Windows Registry files
require 'rex/registry'
# Library for parsing Java serialized streams
require 'rex/java'
# Generic classes
require 'rex/constants'
require 'rex/exceptions'