Do final / minor cleanup
parent
8dce80fd30
commit
386e2e3d29
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue