Add targets to avoid ARCH_ALL payload confusion
parent
22a0d970da
commit
1b386fa7f1
|
@ -23,8 +23,13 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
'License' => MSF_LICENSE,
|
||||
'DefaultOptions' => { 'PAYLOAD' => 'linux/armle/shell_reverse_tcp' },
|
||||
'Platform' => 'linux',
|
||||
'Arch' => ARCH_ALL,
|
||||
'Targets' => [ ['Automatic', {}] ],
|
||||
'Arch' => [ARCH_ARMLE, ARCH_X86, ARCH_X86_64, ARCH_MIPSLE],
|
||||
'Targets' => [
|
||||
['armle', {'Arch' => ARCH_ARMLE}],
|
||||
['x86', {'Arch' => ARCH_X86}],
|
||||
['x64', {'Arch' => ARCH_X86_64}],
|
||||
['mipsle', {'Arch' => ARCH_MIPSLE}]
|
||||
],
|
||||
'DefaultTarget' => 0,
|
||||
'DisclosureDate' => 'Jan 01 2016'
|
||||
))
|
||||
|
|
Loading…
Reference in New Issue