Remove linux platform limitation, target depends on arch only.

bug/bundler_fix
Joe Vennix 2014-08-24 01:39:04 -05:00
parent 04d0b87067
commit 88f626184c
No known key found for this signature in database
GPG Key ID: 127B05FB3E85A2B0
1 changed files with 3 additions and 2 deletions

View File

@ -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