metasploit-framework/modules/nops/x86/opty2.rb

40 lines
761 B
Ruby
Raw Normal View History

##
# This module requires Metasploit: http://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-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
2013-08-30 21:28:54 +00:00
def initialize
super(
'Name' => 'Opty2',
'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
2012-03-18 05:07:27 +00:00
end