60 lines
1.1 KiB
Ruby
60 lines
1.1 KiB
Ruby
require 'msf/core'
|
|
|
|
module Msf
|
|
module Encoders
|
|
module X86
|
|
|
|
class Countdown < 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,
|
|
'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" +
|
|
"\xff\xc1" +
|
|
"\x5e" +
|
|
"\x30\x4c\x0e\x07" +
|
|
"\xe2\xfa"
|
|
|
|
# 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
|
|
|
|
end end end
|