2010-04-14 07:40:04 +00:00
|
|
|
##
|
2014-10-17 16:47:33 +00:00
|
|
|
# This module requires Metasploit: http://metasploit.com/download
|
2013-10-15 18:50:46 +00:00
|
|
|
# Current source: https://github.com/rapid7/metasploit-framework
|
2010-04-14 07:40:04 +00:00
|
|
|
##
|
|
|
|
|
|
|
|
require 'msf/core'
|
|
|
|
require 'msf/core/payload/generic'
|
|
|
|
|
|
|
|
module Metasploit3
|
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
include Msf::Payload::Single
|
2010-04-14 07:40:04 +00:00
|
|
|
|
2013-08-30 21:28:54 +00:00
|
|
|
def initialize(info = {})
|
|
|
|
super(merge_info(info,
|
|
|
|
'Name' => 'Generic x86 Tight Loop',
|
|
|
|
'Description' => 'Generate a tight loop in the target process',
|
|
|
|
'Author' => 'jduck',
|
2013-09-24 17:33:31 +00:00
|
|
|
'Platform' => %w{ bsd bsdi linux osx solaris win },
|
2013-08-30 21:28:54 +00:00
|
|
|
'License' => MSF_LICENSE,
|
|
|
|
'Arch' => ARCH_X86,
|
|
|
|
'Payload' =>
|
|
|
|
{
|
|
|
|
'Payload' => "\xeb\xfe" # jump to self
|
|
|
|
}
|
|
|
|
))
|
|
|
|
end
|
2010-04-14 07:40:04 +00:00
|
|
|
|
|
|
|
end
|