class MetasploitModule < Msf::Encoder
def initialize
super(
'Name' => 'The "none" Encoder',
'Description' => %q{
This "encoder" does not transform the payload in any way.
},
'Author' => 'spoonm',
'License' => MSF_LICENSE,
'Arch' => ARCH_ALL,
'EncoderType' => Msf::Encoder::Type::Raw)
end
def encode_block(_state, buf)
buf
end
end