## # $Id$ ## ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # Framework web site for more information on licensing and terms of use. # http://metasploit.com/framework/ ## require 'msf/core' require 'rex/encoder/alpha2/alpha_upper' class Metasploit3 < Msf::Encoder::Alphanum Rank = LowRanking def initialize super( 'Name' => "Alpha2 Alphanumeric Uppercase Encoder", 'Version' => '$Revision$', 'Description' => %q{ Encodes payloads as alphanumeric uppercase text. This encoder uses SkyLined's Alpha2 encoding suite. }, 'Author' => [ 'pusscat' 'skylined' ], 'Arch' => ARCH_X86, 'License' => BSD_LICENSE, 'EncoderType' => Msf::Encoder::Type::AlphanumUpper, 'Decoder' => { 'BlockSize' => 1, }) end # # Returns the decoder stub that is adjusted for the size of the buffer # being encoded. # def decoder_stub(state) reg = datastore['BufferRegister'] off = (datastore['BufferOffset'] || 0).to_i buf = '' # We need to create a GetEIP stub for the exploit if (not reg) if(datastore['AllowWin32SEH'] and datastore['AllowWin32SEH'].to_s =~ /^(t|y|1)/i) buf = 'VTX630WTX638VXH49HHHPVX5AAQQPVX5YYYYP5YYYD5KKYAPTTX638TDDNVDDX4Z4A63861816' reg = 'ECX' off = 0 else res = Rex::Arch::X86.geteip_fpu(state.badchars) if (not res) raise RuntimeError, "Unable to generate geteip code" end buf, reg, off = res end else reg.upcase! end buf + Rex::Encoder::Alpha2::AlphaUpper::gen_decoder(reg, off) end # # Configure SEH getpc code on Windows # def init_platform(platform) if(platform.supports?(::Msf::Module::PlatformList.win32)) datastore['AllowWin32SEH'] = true end end # # Encodes a one byte block with the current index of the length of the # payload. # def encode_block(state, block) return Rex::Encoder::Alpha2::AlphaUpper::encode_byte(block.unpack('C')[0], state.badchars) end # # Tack on our terminator # def encode_end(state) state.encoded += Rex::Encoder::Alpha2::AlphaUpper::add_terminator() end end