Skip to content

Commit

Permalink
added x64 arch for targets
Browse files Browse the repository at this point in the history
  • Loading branch information
space-r7 committed Apr 17, 2019
1 parent 54edf3c commit 3920789
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions modules/exploits/multi/fileformat/libreoffice_macro_exec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -46,17 +46,19 @@ def initialize(info = {})
'Windows',
{
'Platform' => 'win',
'Arch' => ARCH_X86,
'Payload' => 'windows/meterpreter/reverse_tcp'
'Arch' => [ ARCH_X86, ARCH_X64 ],
'Payload' => 'windows/meterpreter/reverse_tcp',
'DefaultOptions' => { 'PrependMigrate' => true }
}
],
[
'Linux',
{
'Platform' => 'linux',
'Arch' => ARCH_X86,
'Arch' => [ ARCH_X86, ARCH_X64 ],
'Payload' => 'linux/x86/meterpreter/reverse_tcp',
'CmdStagerFlavor' => 'printf'
'DefaultOptions' => { 'PrependFork' => true },
'CmdStagerFlavor' => 'printf',
}
]
],
Expand Down

0 comments on commit 3920789

Please sign in to comment.