Reorder targets.

bug/bundler_fix
Joe Vennix 2014-01-02 02:23:38 -06:00
parent 9b39ea55ee
commit 8d3130b19e
1 changed files with 19 additions and 1 deletions

View File

@ -23,7 +23,7 @@ module Exploit::Remote::FirefoxAddonGenerator
[ 'Universal (Javascript XPCOM Shell)',
{
'Platform' => 'firefox',
'Arch' => 'firefox'
'Arch' => ARCH_FIREFOX
}
],
[ 'Java Payload',
@ -38,12 +38,24 @@ module Exploit::Remote::FirefoxAddonGenerator
'Arch' => ARCH_X86
}
],
[ 'Windows x64 (Native Payload)',
{
'Platform' => 'windows',
'Arch' => ARCH_X64
}
],
[ 'Linux x86 (Native Payload)',
{
'Platform' => 'linux',
'Arch' => ARCH_X86
}
],
[ 'Linux x64 (Native Payload)',
{
'Platform' => 'linux',
'Arch' => ARCH_X64
}
],
[ 'Mac OS X PPC (Native Payload)',
{
'Platform' => 'osx',
@ -55,6 +67,12 @@ module Exploit::Remote::FirefoxAddonGenerator
'Platform' => 'osx',
'Arch' => ARCH_X86
}
],
[ 'Mac OS X x64 (Native Payload)',
{
'Platform' => 'osx',
'Arch' => ARCH_X64
}
]
],
'DefaultTarget' => 0