Remove linux platform limitation, target depends on arch only.
parent
04d0b87067
commit
88f626184c
|
@ -18,9 +18,10 @@ class Metasploit3 < Msf::Exploit::Remote
|
|||
},
|
||||
'Author' => [ 'joev' ],
|
||||
'Targets' => [
|
||||
[ 'Linux x64', { 'Arch' => ARCH_X64, 'Platform' => 'linux' } ],
|
||||
[ 'Linux x86', { 'Arch' => ARCH_X86, 'Platform' => 'linux' } ]
|
||||
[ 'x86 (32-bit)', { 'Arch' => ARCH_X86 } ],
|
||||
[ 'x64 (64-bit)', { 'Arch' => ARCH_X64 } ]
|
||||
],
|
||||
'Platform' => %w(linux unix osx windows),
|
||||
'DefaultTarget' => 0
|
||||
))
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue