| Reporter | Title | Published | Views | Family All 19 |
|---|---|---|---|---|
| Siemens WinCC and SIMATIC HMI Panels < 11.0.2.1 Authentication Bypass | 8 May 201900:00 | – | nessus | |
| Siemens WinCC and SIMATIC HMI Panels Default Password | 8 May 201900:00 | – | nessus | |
| Siemens WinCC and SIMATIC HMI Panels < 11.0.2.1 Multiple Vulnerabilities | 8 May 201900:00 | – | nessus | |
| CVE-2011-4508 | 3 Feb 201220:00 | – | cve | |
| CVE-2011-4509 | 3 Feb 201220:00 | – | cve | |
| CVE-2011-4508 | 3 Feb 201220:00 | – | cvelist | |
| CVE-2011-4509 | 3 Feb 201220:00 | – | cvelist | |
| EUVD-2011-4434 | 7 Oct 202500:30 | – | euvd | |
| EUVD-2011-4435 | 7 Oct 202500:30 | – | euvd | |
| Siemens Simatic HMI Authentication Vulnerabilities | 24 Sep 201106:00 | – | ics |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_Siemens_SIMATIC_51177.nasl 7015 2017-08-28 11:51:24Z teissa $
#
# Multiple Siemens SIMATIC Products Authentication Bypass Vulnerabilities
#
# Authors:
# Michael Meyer <[email protected]>
#
# Copyright:
# Copyright (c) 2011 Greenbone Networks GmbH
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# 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_summary = "Multiple Siemens SIMATIC products are affected by vulnerabilities that
allow attackers to bypass authentication.
An attacker can exploit these issues to bypass intended security
restrictions and gain access to the affected application. Successfully
exploiting these issues may lead to further attacks.
The following products are affected:
SIMATIC WinCC Flexible 2004 through 2008 SP2 SIMATIC WinCC V11,
V11 SP1, and V11 SP2 SIMATIC HMI TP, OP, MP, Mobile, and Comfort
Series Panels";
if (description)
{
script_id(103372);
script_bugtraq_id(51177);
script_cve_id("CVE-2011-4508","CVE-2011-4509");
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_version("$Revision: 7015 $");
script_name("Multiple Siemens SIMATIC Products Authentication Bypass Vulnerabilities");
script_xref(name : "URL" , value : "http://www.securityfocus.com/bid/51177");
script_xref(name : "URL" , value : "http://www.automation.siemens.com/mcms/human-machine-interface/en/visualization-software/Pages/Default.aspx");
script_xref(name : "URL" , value : "http://www.automation.siemens.com/mcms/human-machine-interface/en/visualization-software/wincc-flexible/wincc-flexible-runtime/user-interface/pages/default.aspx");
script_xref(name : "URL" , value : "http://xs-sniper.com/blog/2011/12/20/the-siemens-simatic-remote-authentication-bypass-that-doesnt-exist/");
script_xref(name : "URL" , value : "http://www.us-cert.gov/control_systems/pdf/ICSA-11-356-01.pdf");
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-12-23 10:42:29 +0100 (Fri, 23 Dec 2011)");
script_tag(name:"qod_type", value:"remote_vul");
script_category(ACT_ATTACK);
script_family("Web application abuses");
script_copyright("This script is Copyright (C) 2011 Greenbone Networks GmbH");
script_dependencies("find_service.nasl", "http_version.nasl");
script_require_ports("Services/www", 80);
script_exclude_keys("Settings/disable_cgi_scanning");
script_tag(name : "summary" , value : tag_summary);
exit(0);
}
include("http_func.inc");
include("host_details.inc");
include("http_keepalive.inc");
port = get_http_port(default:80);
if(!get_port_state(port))exit(0);
dirs = make_list("/","/www/");
host = get_host_name();
foreach dir (dirs) {
url = string(dir,"start.html");
req = http_get(item:url, port:port);
buf = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
if( buf == NULL ) continue;
if("miniweb" >< tolower(buf)) {
req = string(
"POST ",dir,"FormLogin HTTP/1.1\r\n",
"Host: ",host,"\r\n",
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8\r\n",
"Accept-Encoding: gzip, deflate\r\n",
"DNT: 1\r\n",
"Referer: http://",host,"/start.html\r\n",
"Content-Type: application/x-www-form-urlencoded\r\n",
"Content-Length: 58\r\n",
"\r\n",
"Login=Administrator&Redirection=%2Fstart.html&Password=100\r\n\r\n");
result = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
if("Auth Form Response" >< result) {
start = eregmatch(string:result, pattern:'url=([^"]+)');
if(isnull(start[1]))continue;
co = eregmatch(string:result, pattern:"Set-cookie: ([^,]+)");
if(isnull(co[1]))continue;
cookie = co[1];
url = string(start[1]);
req = string("GET ", url, " HTTP/1.1\r\n",
"Host: ",host,"\r\n",
"Cookie: ",cookie," path=/\r\n",
"\r\n");
buf = http_keepalive_send_recv(port:port, data:req, bodyonly:FALSE);
if( buf == NULL ) continue;
if("You are logged in" >< buf && "Welcome Administrator" >< buf) {
security_message(port:port);
exit(0);
}
}
}
}
exit(0);
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