1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00

add targets for windows and linux

git-svn-id: file:///home/svn/framework3/trunk@11345 4d416f70-5f16-0410-b530-b9f4589650da
This commit is contained in:
James Lee 2010-12-15 22:46:22 +00:00
parent 6a5ebf2d91
commit fd1fb44bfc

View File

@ -43,7 +43,7 @@ class Metasploit3 < Msf::Exploit::Remote
[ 'OSVDB', '63483' ], [ 'OSVDB', '63483' ],
[ 'URL', 'http://slightlyrandombrokenthoughts.blogspot.com/2010/04/java-trusted-method-chaining-cve-2010.html' ], [ 'URL', 'http://slightlyrandombrokenthoughts.blogspot.com/2010/04/java-trusted-method-chaining-cve-2010.html' ],
], ],
'Platform' => [ 'java' ], 'Platform' => [ 'java', 'win', 'linux' ],
'Payload' => { 'Space' => 20480, 'BadChars' => '', 'DisableNops' => true }, 'Payload' => { 'Space' => 20480, 'BadChars' => '', 'DisableNops' => true },
'Targets' => 'Targets' =>
[ [
@ -52,6 +52,18 @@ class Metasploit3 < Msf::Exploit::Remote
'Arch' => ARCH_JAVA, 'Arch' => ARCH_JAVA,
} }
], ],
[ 'Windows Universal',
{
'Arch' => ARCH_X86,
'Platform' => 'win'
}
],
[ 'Linux x86',
{
'Arch' => ARCH_X86,
'Platform' => 'linux'
}
]
], ],
'DefaultTarget' => 0, 'DefaultTarget' => 0,
'DisclosureDate' => 'Mar 31 2010' 'DisclosureDate' => 'Mar 31 2010'