mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
0ea6eca4bc
git-svn-id: file:///home/svn/framework3/trunk@9179 4d416f70-5f16-0410-b530-b9f4589650da
68 lines
1.5 KiB
Ruby
68 lines
1.5 KiB
Ruby
##
|
|
# $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'
|
|
|
|
|
|
class Metasploit3 < Msf::Encoder::Xor
|
|
|
|
def initialize
|
|
super(
|
|
'Name' => 'Single-byte XOR Countdown Encoder',
|
|
'Version' => '$Revision$',
|
|
'Description' => %q{
|
|
This encoder uses the length of the payload as a position-dependent
|
|
encoder key to produce a small decoder stub.
|
|
},
|
|
'Author' => 'vlad902',
|
|
'Arch' => ARCH_X86,
|
|
'License' => MSF_LICENSE,
|
|
'Decoder' =>
|
|
{
|
|
'BlockSize' => 1,
|
|
})
|
|
end
|
|
|
|
#
|
|
# Returns the decoder stub that is adjusted for the size of the buffer
|
|
# being encoded.
|
|
#
|
|
def decoder_stub(state)
|
|
decoder =
|
|
Rex::Arch::X86.set(
|
|
Rex::Arch::X86::ECX,
|
|
state.buf.length - 1,
|
|
state.badchars) +
|
|
"\xe8\xff\xff\xff" + # call $+4
|
|
"\xff\xc1" + # inc ecx
|
|
"\x5e" + # pop esi
|
|
"\x30\x4c\x0e\x07" + # xor_loop: xor [esi + ecx + 0x07], cl
|
|
"\xe2\xfa" # loop xor_loop
|
|
|
|
# Initialize the state context to 1
|
|
state.context = 1
|
|
|
|
return decoder
|
|
end
|
|
|
|
#
|
|
# Encodes a one byte block with the current index of the length of the
|
|
# payload.
|
|
#
|
|
def encode_block(state, block)
|
|
state.context += 1
|
|
|
|
[ block.unpack('C')[0] ^ (state.context - 1) ].pack('C')
|
|
end
|
|
|
|
end
|