2005-07-10 20:49:13 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
module Msf
|
|
|
|
module Encoders
|
2005-07-13 18:54:41 +00:00
|
|
|
module X86
|
2005-07-10 20:49:13 +00:00
|
|
|
|
|
|
|
class Call4Dword < Msf::Encoder::Xor
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'Call+4 Dword XOR Encoder',
|
|
|
|
'Version' => '$Revision$',
|
|
|
|
'Description' => 'Call+4 Dword XOR Encoder',
|
|
|
|
'Author' => [ 'hdm', 'spoonm' ],
|
2005-07-13 18:54:41 +00:00
|
|
|
'Arch' => ARCH_X86,
|
2006-01-21 22:10:20 +00:00
|
|
|
'License' => MSF_LICENSE,
|
2005-07-10 20:49:13 +00:00
|
|
|
'Decoder' =>
|
|
|
|
{
|
|
|
|
'KeySize' => 4,
|
|
|
|
'BlockSize' => 4,
|
|
|
|
})
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns the decoder stub that is adjusted for the size of
|
|
|
|
# the buffer being encoded
|
|
|
|
#
|
|
|
|
def decoder_stub(state)
|
|
|
|
decoder =
|
|
|
|
Rex::Arch::X86.sub(-(((state.buf.length - 1) / 4) + 1), Rex::Arch::X86::ECX,
|
|
|
|
state.badchars) +
|
|
|
|
"\xe8\xff\xff\xff" + # call $+4
|
|
|
|
"\xff\xc0" + # inc eax
|
|
|
|
"\x5e" + # pop esi
|
|
|
|
"\x81\x76\x0eXORK" + # xor [esi + 0xe], xork
|
|
|
|
"\x83\xee\xfc" + # sub esi, -4
|
|
|
|
"\xe2\xf4" # loop xor
|
|
|
|
|
|
|
|
# Calculate the offset to the XOR key
|
|
|
|
state.decoder_key_offset = decoder.index('XORK')
|
|
|
|
|
|
|
|
return decoder
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end end end
|