Vulnerabilities > CVE-2002-1629 - Unspecified vulnerability in Multi-Tech Proxyserver Mtpsr1/Mtpsr2/Mtpsr3

047910
CVSS 10.0 - CRITICAL
Attack vector
NETWORK
Attack complexity
LOW
Privileges required
NONE
Confidentiality impact
COMPLETE
Integrity impact
COMPLETE
Availability impact
COMPLETE
network
low complexity
multi-tech
critical
nessus

Summary

Multi-Tech ProxyServer products MTPSR1-100, MTPSR1-120, MTPSR1-202ST, MTPSR2-201, and MTPSR3-200 ship with a null password, which allows remote attackers to gain administrative privileges via Telnet or HTTP.

Vulnerable Configurations

Part Description Count
Hardware
Multi-Tech
5

Nessus

NASL familyWeb Servers
NASL idMULTITECH_PROXY_DEFAULT_PWD.NASL
descriptionThe remote MultiTech Proxy Server has no password set for the
last seen2020-06-01
modified2020-06-02
plugin id11504
published2003-03-30
reporterThis script is Copyright (C) 2003-2018 Tenable Network Security, Inc.
sourcehttps://www.tenable.com/plugins/nessus/11504
titleMultiTech Proxy Server Default Null Password
code
#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description)
{
 script_id(11504);
 script_version("1.17");
 script_cvs_date("Date: 2018/11/15 20:50:25");
 script_cve_id("CVE-2002-1629");
 script_bugtraq_id(7203);

 script_name(english:"MultiTech Proxy Server Default Null Password");
 script_summary(english:"Attempts to log into the remote web server");

 script_set_attribute(attribute:"synopsis", value:"The remote Proxy server uses a default password.");
 script_set_attribute(attribute:"description", value:
"The remote MultiTech Proxy Server has no password set for the
'supervisor' account.

An attacker may log in the remote host and reconfigure it
easily.");
 script_set_attribute(attribute:"see_also", value:"https://seclists.org/bugtraq/2002/Dec/106");
 script_set_attribute(attribute:"solution", value:"Set a strong password for the 'supervisor' account.");
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:C/I:C/A:C");
 script_set_cvss_temporal_vector("CVSS2#E:U/RL:OF/RC:C");
 script_set_attribute(attribute:"exploitability_ease", value:"No exploit is required");
 script_set_attribute(attribute:"exploit_available", value:"false");

 script_set_attribute(attribute:"vuln_publication_date", value:"2002/12/11");
 script_set_attribute(attribute:"plugin_publication_date", value:"2003/03/30");

 script_set_attribute(attribute:"plugin_type", value:"remote");
 script_end_attributes();

 script_category(ACT_ATTACK);
 script_copyright(english:"This script is Copyright (C) 2003-2018 Tenable Network Security, Inc.");
 script_family(english:"Web Servers");

 script_dependencie("find_service1.nasl", "no404.nasl", "http_version.nasl", "webmirror.nasl");
 script_exclude_keys("global_settings/supplied_logins_only");
 script_require_ports("Services/www", 80);
 script_require_keys("www/apache");
 exit(0);
}

#
# The script code starts here
#
include("audit.inc");
include("global_settings.inc");
include("misc_func.inc");
include("http.inc");

port = get_http_port(default:80);

if (supplied_logins_only) audit(AUDIT_SUPPLIED_LOGINS_ONLY);

w = http_send_recv3(method:"GET", item:"/std.html", port:port, username: "", password: "", exit_on_fail:TRUE);
if (w[0] =~ "^HTTP/[0-9]\.[0-9] 40[13] ")
 {
  w = http_send_recv3(method:"GET", item:"/std.html", port:port,
    username: "supervisor", password: "", exit_on_fail:TRUE);
  if (w[0] =~ "^HTTP/[0-9]\.[0-9] 200 ")
  {
   security_hole(port);
   exit(0);
  }
 }
exit(0, "The web server listening on port "+port+" is not affected.");