add 64-bit, osx support

This commit is contained in:
Brent Cook
2017-08-22 13:51:28 -05:00
parent e01caac9ed
commit 7263c7a66e
@@ -91,8 +91,8 @@ class MetasploitModule < Msf::Exploit::Remote
['URL', 'https://svn.nmap.org/nmap/scripts/jdwp-exec.nse'],
['URL', 'http://blog.ioactive.com/2014/04/hacking-java-debug-wire-protocol-or-how.html']
],
'Platform' => %w{ linux win },
'Arch' => ARCH_X86,
'Platform' => %w{ linux win osx },
'Arch' => [ARCH_X86, ARCH_X64],
'Payload' =>
{
'Space' => 2048,
@@ -101,12 +101,17 @@ class MetasploitModule < Msf::Exploit::Remote
},
'Targets' =>
[
[ 'Linux x86 (Native Payload)',
[ 'Linux (Native Payload)',
{
'Platform' => 'linux'
}
],
[ 'Windows x86 (Native Payload)',
[ 'macOS (Native Payload)',
{
'Platform' => 'osx'
}
],
[ 'Windows (Native Payload)',
{
'Platform' => 'win'
}