Do final / minor cleanup

bug/bundler_fix
jvazquez-r7 2014-04-09 23:19:12 -05:00
parent 8dce80fd30
commit 386e2e3d29
1 changed files with 7 additions and 7 deletions

View File

@ -23,7 +23,7 @@ class Metasploit3 < Msf::Exploit::Remote
}, },
'Author' => 'Author' =>
[ [
'unknown', # Vulnerability discovery 'Unknown', # Vulnerability discovery
'Fabian Braeunlein <fabian@breaking.systems>', # Metasploit PoC with wget method 'Fabian Braeunlein <fabian@breaking.systems>', # Metasploit PoC with wget method
'Michael Messner <devnull@s3cur1ty.de>' # Metasploit module 'Michael Messner <devnull@s3cur1ty.de>' # Metasploit module
], ],
@ -40,7 +40,6 @@ class Metasploit3 < Msf::Exploit::Remote
], ],
'DisclosureDate' => 'Feb 11 2014', 'DisclosureDate' => 'Feb 11 2014',
'Privileged' => true, 'Privileged' => true,
'Platform' => 'linux',
'Payload' => 'Payload' =>
{ {
'DisableNops' => true 'DisableNops' => true
@ -49,13 +48,14 @@ class Metasploit3 < Msf::Exploit::Remote
[ [
[ 'MIPS Little Endian', [ 'MIPS Little Endian',
{ {
'Arch' => ARCH_MIPSLE, 'Platform' => 'linux',
'Arch' => ARCH_MIPSLE
} }
], ],
[ 'MIPS Big Endian', [ 'MIPS Big Endian',
{ {
'Arch' => ARCH_MIPS, 'Platform' => 'linux',
'Platform' => 'linux' 'Arch' => ARCH_MIPS
} }
], ],
], ],
@ -78,7 +78,7 @@ class Metasploit3 < Msf::Exploit::Remote
return Exploit::CheckCode::Vulnerable return Exploit::CheckCode::Vulnerable
end end
rescue ::Rex::ConnectionError rescue ::Rex::ConnectionError
return Exploit::CheckCode::Safe return Exploit::CheckCode::Unknown
end end
Exploit::CheckCode::Safe Exploit::CheckCode::Safe