Files
metasploit-gs/modules/payloads/singles/generic/debug_trap.rb
T

31 lines
721 B
Ruby
Raw Normal View History

##
2017-07-24 06:26:21 -07:00
# This module requires Metasploit: https://metasploit.com/download
2013-10-15 13:50:46 -05:00
# Current source: https://github.com/rapid7/metasploit-framework
##
require 'msf/core/payload/generic'
2016-03-08 14:02:44 +01:00
module MetasploitModule
CachedSize = 1
2013-08-30 16:28:54 -05:00
include Msf::Payload::Single
2013-08-30 16:28:54 -05:00
def initialize(info = {})
super(merge_info(info,
'Name' => 'Generic x86 Debug Trap',
'Description' => 'Generate a debug trap in the target process',
'Author' => 'robert <robertmetasploit[at]gmail.com>',
'Platform' => %w{ bsd bsdi linux osx solaris win },
2013-08-30 16:28:54 -05:00
'License' => MSF_LICENSE,
'Arch' => ARCH_X86,
'Payload' =>
{
'Payload' =>
"\xcc"
}
))
end
2012-03-18 00:07:27 -05:00
end