2010-05-03 17:13:09 +00:00
|
|
|
##
|
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-10-09 02:29:55 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
2010-05-03 17:13:09 +00:00
|
|
|
##
|
|
|
|
|
2005-11-28 23:49:48 +00:00
|
|
|
require 'msf/core'
|
|
|
|
|
|
|
|
###
|
|
|
|
#
|
|
|
|
# This class implements a very basic NOP sled generator that just returns a
|
|
|
|
# string of 0x90's.
|
|
|
|
#
|
|
|
|
###
|
2012-10-09 02:23:38 +00:00
|
|
|
class Metasploit4 < Msf::Nop
|
2005-11-28 23:49:48 +00:00
|
|
|
|
|
|
|
def initialize
|
|
|
|
super(
|
|
|
|
'Name' => 'Sample NOP generator',
|
|
|
|
'Version' => '$Revision$',
|
|
|
|
'Description' => 'Sample single-byte NOP generator',
|
|
|
|
'Author' => 'skape',
|
|
|
|
'Arch' => ARCH_X86)
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
# Returns a string of 0x90's for the supplied length.
|
|
|
|
#
|
|
|
|
def generate_sled(length, opts)
|
|
|
|
"\x90" * length
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|