module MetasploitModule
CachedSize = 2
include Msf::Payload::Single
def initialize(info = {})
super(
merge_info(
info,
'Name' => 'Generic x86 Tight Loop',
'Description' => 'Generate a tight loop in the target process',
'Author' => 'jduck',
'Platform' => %w[bsd bsdi linux osx solaris win],
'License' => MSF_LICENSE,
'Arch' => ARCH_X86,
'Payload' => {
'Payload' => "\xeb\xfe"
}
)
)
end
end