2009-11-17 00:00:08 +00:00
|
|
|
##
|
2009-11-17 00:05:19 +00:00
|
|
|
# $Id$
|
2009-11-17 00:00:08 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
##
|
|
|
|
# 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
|
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'Generic ${IFS} Substitution Command Encoder',
|
2009-11-17 00:05:19 +00:00
|
|
|
'Version' => '$Revision$',
|
2009-11-17 00:00:08 +00:00
|
|
|
'Description' => %q{
|
|
|
|
This encoder uses standard Bourne shell variable substitution
|
|
|
|
to avoid spaces without being overly fancy.
|
|
|
|
},
|
|
|
|
'Author' => 'egypt',
|
|
|
|
'Arch' => ARCH_CMD)
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# Encodes the payload
|
|
|
|
#
|
|
|
|
def encode_block(state, buf)
|
|
|
|
buf.gsub!(/\s/, '${IFS}')
|
|
|
|
return buf
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|