Files
metasploit-gs/modules/nops/x86/opty2.rb
T
kris 37c2e301ed replacing defunct framework URL in header comments in most modules and pcap_log
git-svn-id: file:///home/svn/framework3/trunk@6479 4d416f70-5f16-0410-b530-b9f4589650da
2009-04-13 14:33:26 +00:00

46 lines
897 B
Ruby

##
# $Id$
##
##
# 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'
require 'rex/nop/opty2'
###
#
# Opty2
# -----
#
# This class implements single-byte NOP generation for X86. It takes from
# ADMmutate and from spoonfu.
#
###
class Metasploit3 < Msf::Nop
def initialize
super(
'Name' => 'Opty2',
'Version' => '$Revision$',
'Description' => 'Opty2 multi-byte NOP generator',
'Author' => [ 'spoonm', 'optyx' ],
'License' => MSF_LICENSE,
'Arch' => ARCH_X86)
end
def generate_sled(length, opts = {})
opty = Rex::Nop::Opty2.new(
opts['BadChars'] || '',
opts['SaveRegisters'])
opty.generate_sled(length)
end
end