Files
metasploit-gs/lib/rex/encoder/alpha2.rb
T
Joshua Drake 05f107f466 Fixes #4371, Converts many uses of require to autoload
git-svn-id: file:///home/svn/framework3/trunk@12554 4d416f70-5f16-0410-b530-b9f4589650da
2011-05-06 18:47:10 +00:00

34 lines
914 B
Ruby

#!/usr/bin/env ruby
#
# ________________________________________________________________________________
#
# ,sSSs,,s, ,sSSSs, ALPHA 2: Zero-tolerance. (build 07)
# SS" Y$P" SY" ,SY
# iS' dY ,sS" Unicode-proof uppercase alphanumeric shellcode encoding.
# YS, dSb ,sY" Copyright (C) 2003, 2004 by Berend-Jan Wever.
# `"YSS'"S' 'SSSSSSSP <skylined@edup.tudelft.nl>
# ________________________________________________________________________________
#
#
# make sure the namespace is created
#
module Rex
module Encoder
module Alpha2
#
# autoload the Alpha2 encoders
#
autoload :Generic, 'rex/encoder/alpha2/generic'
autoload :AlphaMixed, 'rex/encoder/alpha2/alpha_mixed'
autoload :AlphaUpper, 'rex/encoder/alpha2/alpha_upper'
autoload :UnicodeMixed, 'rex/encoder/alpha2/unicode_mixed'
autoload :UnicodeUpper, 'rex/encoder/alpha2/unicode_upper'
end
end
end