Files
metasploit-gs/documentation/samples/modules/nops/sample.rb
T

35 lines
743 B
Ruby
Raw Normal View History

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-08 21:29:55 -05: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.
#
###
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