From 386e2e3d290560d0a7a0a541895e6e121446e6a9 Mon Sep 17 00:00:00 2001 From: jvazquez-r7 Date: Wed, 9 Apr 2014 23:19:12 -0500 Subject: [PATCH] Do final / minor cleanup --- modules/exploits/linux/http/fritzbox_echo_exec.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/modules/exploits/linux/http/fritzbox_echo_exec.rb b/modules/exploits/linux/http/fritzbox_echo_exec.rb index 4852dfe788..db4a918d83 100644 --- a/modules/exploits/linux/http/fritzbox_echo_exec.rb +++ b/modules/exploits/linux/http/fritzbox_echo_exec.rb @@ -15,7 +15,7 @@ class Metasploit3 < Msf::Exploit::Remote super(update_info(info, 'Name' => 'Fritz!Box Webcm Unauthenticated Command Injection', 'Description' => %q{ - Different Fritz!Box devices are vulnerable to an unauthenticated OS command injection. + Different Fritz!Box devices are vulnerable to an unauthenticated OS command injection. This module was tested on a Fritz!Box 7270 from the LAN side. The vendor reported the following devices vulnerable: 7570, 7490, 7390, 7360, 7340, 7330, 7272, 7270, 7170 Annex A A/CH, 7170 Annex B English, 7170 Annex A English, 7140, 7113, 6840 LTE, @@ -23,7 +23,7 @@ class Metasploit3 < Msf::Exploit::Remote }, 'Author' => [ - 'unknown', # Vulnerability discovery + 'Unknown', # Vulnerability discovery 'Fabian Braeunlein ', # Metasploit PoC with wget method 'Michael Messner ' # Metasploit module ], @@ -40,7 +40,6 @@ class Metasploit3 < Msf::Exploit::Remote ], 'DisclosureDate' => 'Feb 11 2014', 'Privileged' => true, - 'Platform' => 'linux', 'Payload' => { 'DisableNops' => true @@ -49,13 +48,14 @@ class Metasploit3 < Msf::Exploit::Remote [ [ 'MIPS Little Endian', { - 'Arch' => ARCH_MIPSLE, + 'Platform' => 'linux', + 'Arch' => ARCH_MIPSLE } ], [ '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 end rescue ::Rex::ConnectionError - return Exploit::CheckCode::Safe + return Exploit::CheckCode::Unknown end Exploit::CheckCode::Safe