Mutiny < 4.5-1.12 Unspecified Network Interface Menu Remote Command Injection - Nessus

High   Plugin ID: 62718

This page contains detailed information about the Mutiny < 4.5-1.12 Unspecified Network Interface Menu Remote Command Injection Nessus plugin including available exploits and PoCs found on GitHub, in Metasploit or Exploit-DB for verifying of this vulnerability.

Plugin Overview


ID: 62718
Name: Mutiny < 4.5-1.12 Unspecified Network Interface Menu Remote Command Injection
Filename: mutiny_4_5_1_12.nasl
Vulnerability Published: 2012-10-22
This Plugin Published: 2012-10-26
Last Modification Time: 2022-04-11
Plugin Version: 1.10
Plugin Type: remote
Plugin Family: CGI abuses
Dependencies: mutiny_detect.nasl
Required KB Items [?]: www/mutiny
Excluded KB Items: Settings/disable_cgi_scanning

Vulnerability Information


Severity: High
Vulnerability Published: 2012-10-22
Patch Published: 2012-10-22
CVE [?]: CVE-2012-3001
CPE [?]: cpe:/a:mutiny:standard

Synopsis

The remote host contains a network monitoring application that is affected by a command injection vulnerability.

Description

The remote web server hosts a version of Mutiny earlier than 4.5-1.12. It is, therefore, reportedly affected by a command injection vulnerability that could allow an authenticated attacker to execute arbitrary commands via the network interface menu.

Note that Nessus has not tested for this issue but has instead relied only on the application's self-reported version number.

Solution

Upgrade to version 4.5-1.12 or later.

Public Exploits


Target Network Port(s): 80
Target Asset(s): Services/www
Exploit Available: True (Metasploit Framework, Exploit-DB)
Exploit Ease: Exploits are available

Here's the list of publicly known exploits and PoCs for verifying the Mutiny < 4.5-1.12 Unspecified Network Interface Menu Remote Command Injection vulnerability:

  1. Metasploit: exploit/multi/http/mutiny_subnetmask_exec
    [Mutiny Remote Command Execution]
  2. Exploit-DB: exploits/linux/remote/24888.rb
    [EDB-24888: Mutiny - Remote Command Execution (Metasploit)]

Before running any exploit against any system, make sure you are authorized by the owner of the target system(s) to perform such activity. In any other case, this would be considered as an illegal activity.

WARNING: Beware of using unverified exploits from sources such as GitHub or Exploit-DB. These exploits and PoCs could contain malware. For more information, see how to use exploits safely.

Risk Information


CVSS V2 Vector [?]: AV:N/AC:M/Au:S/C:C/I:C/A:C/E:F/RL:OF/RC:C
CVSS Base Score:8.5 (High)
Impact Subscore:10.0
Exploitability Subscore:6.8
CVSS Temporal Score:7.0 (High)
CVSS Environmental Score:NA (None)
Modified Impact Subscore:NA
Overall CVSS Score:7.0 (High)

Go back to menu.

Plugin Source


This is the mutiny_4_5_1_12.nasl nessus plugin source code. This script is Copyright (C) 2012-2022 Tenable Network Security, Inc.

#%NASL_MIN_LEVEL 70300
#
# (C) Tenable Network Security, Inc.
#

include('deprecated_nasl_level.inc');
include('compat.inc');

if (description)
{
  script_id(62718);
  script_version("1.10");
  script_set_attribute(attribute:"plugin_modification_date", value:"2022/04/11");

  script_cve_id("CVE-2012-3001");
  script_bugtraq_id(56165);
  script_xref(name:"CERT", value:"841851");

  script_name(english:"Mutiny < 4.5-1.12 Unspecified Network Interface Menu Remote Command Injection");

  script_set_attribute(attribute:"synopsis", value:
"The remote host contains a network monitoring application that is
affected by a command injection vulnerability.");
  script_set_attribute(attribute:"description", value:
"The remote web server hosts a version of Mutiny earlier than 4.5-1.12. 
It is, therefore, reportedly affected by a command injection 
vulnerability that could allow an authenticated attacker to execute 
arbitrary commands via the network interface menu. 

Note that Nessus has not tested for this issue but has instead relied
only on the application's self-reported version number.");
  script_set_attribute(attribute:"see_also", value:"http://www.mutiny.com/releasehistory.php");
  script_set_attribute(attribute:"solution", value:
"Upgrade to version 4.5-1.12 or later.");
  script_set_cvss_base_vector("CVSS2#AV:N/AC:M/Au:S/C:C/I:C/A:C");
  script_set_cvss_temporal_vector("CVSS2#E:F/RL:OF/RC:C");

  script_set_attribute(attribute:"exploitability_ease", value:"Exploits are available");
  script_set_attribute(attribute:"exploit_available", value:"true");
  script_set_attribute(attribute:"metasploit_name", value:'Mutiny Remote Command Execution');
  script_set_attribute(attribute:"exploit_framework_metasploit", value:"true");

  script_set_attribute(attribute:"vuln_publication_date", value:"2012/10/22");
  script_set_attribute(attribute:"patch_publication_date", value:"2012/10/22");
  script_set_attribute(attribute:"plugin_publication_date", value:"2012/10/26");

  script_set_attribute(attribute:"plugin_type", value:"remote");
  script_set_attribute(attribute:"cpe", value:"cpe:/a:mutiny:standard");
  script_set_attribute(attribute:"thorough_tests", value:"true");
  script_end_attributes();

  script_category(ACT_GATHER_INFO);
  script_family(english:"CGI abuses");

  script_copyright(english:"This script is Copyright (C) 2012-2022 Tenable Network Security, Inc.");

  script_dependencies("mutiny_detect.nasl");
  script_require_keys("www/mutiny");
  script_exclude_keys("Settings/disable_cgi_scanning");
  script_require_ports("Services/www", 80);

  exit(0);
}

include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");
include("webapp_func.inc");

port = get_http_port(default:80);

install = get_install_from_kb(
  appname      : "mutiny",
  port         : port,
  exit_on_fail : TRUE
);

dir = install["dir"];
version = install["ver"];
loc = build_url(qs:dir, port:port);

if (version == UNKNOWN_VER) audit(AUDIT_UNKNOWN_WEB_APP_VER, "Mutiny", loc);

# format our version from x.x-x.xx to x.x.x.xx
ver1 = str_replace(string:version, find:'-', replace:'.');
ver = split(ver1, sep:".", keep:FALSE);
for (i=0; i<max_index(ver); i++)
  ver[i] = int(ver[i]);

# Versions < 4.5-1.12 are affected
if (
  (ver[0] < 4) ||
  (
    ver[0] == 4 && 
    (
      ver[1] < 5 ||
      (
        ver[1] == 5 && 
        (
          ver[2] < 1 ||
          (ver[2] == 1 && ver[3] < 12)
        )
      )
    )
  )
)
{
  if (report_verbosity > 0)
  {
    report =
      '\n  URL               : ' + loc +
      '\n  Installed version : ' + version +
      '\n  Fixed version     : 4.5-1.12' +
      '\n';
    security_hole(port:port, extra:report);
  }
  else security_hole(port);
  exit(0);
}
else audit(AUDIT_WEB_APP_NOT_AFFECTED, "Mutiny", loc, version);

The latest version of this script can be found in these locations depending on your platform:

  • Linux / Unix:
    /opt/nessus/lib/nessus/plugins/mutiny_4_5_1_12.nasl
  • Windows:
    C:\ProgramData\Tenable\Nessus\nessus\plugins\mutiny_4_5_1_12.nasl
  • Mac OS X:
    /Library/Nessus/run/lib/nessus/plugins/mutiny_4_5_1_12.nasl

Go back to menu.

How to Run


Here is how to run the Mutiny < 4.5-1.12 Unspecified Network Interface Menu Remote Command Injection as a standalone plugin via the Nessus web user interface (https://localhost:8834/):

  1. Click to start a New Scan.
  2. Select Advanced Scan.
  3. Navigate to the Plugins tab.
  4. On the top right corner click to Disable All plugins.
  5. On the left side table select CGI abuses plugin family.
  6. On the right side table select Mutiny < 4.5-1.12 Unspecified Network Interface Menu Remote Command Injection plugin ID 62718.
  7. Specify the target on the Settings tab and click to Save the scan.
  8. Run the scan.

Here are a few examples of how to run the plugin in the command line. Note that the examples below demonstrate the usage on the Linux / Unix platform.

Basic usage:

/opt/nessus/bin/nasl mutiny_4_5_1_12.nasl -t <IP/HOST>

Run the plugin with audit trail message on the console:

/opt/nessus/bin/nasl -a mutiny_4_5_1_12.nasl -t <IP/HOST>

Run the plugin with trace script execution written to the console (useful for debugging):

/opt/nessus/bin/nasl -T - mutiny_4_5_1_12.nasl -t <IP/HOST>

Run the plugin with using a state file for the target and updating it (useful for running multiple plugins on the target):

/opt/nessus/bin/nasl -K /tmp/state mutiny_4_5_1_12.nasl -t <IP/HOST>

Go back to menu.

References


BID | SecurityFocus Bugtraq ID: CERT | Computer Emergency Response Team: See also: Similar and related Nessus plugins:
  • 66497 - Mutiny < 5.0-1.11 Multiple Directory Traversals

Version


This page has been produced using Nessus Professional 10.1.2 (#68) LINUX, Plugin set 202205072148.
Plugin file mutiny_4_5_1_12.nasl version 1.10. For more plugins, visit the Nessus Plugin Library.

Go back to menu.