| Source | Link |
|---|---|
| reversemode | www.reversemode.com/index.php |
| us-cert | www.us-cert.gov/control_systems/pdf/ICS-ALERT-11-346-01.pdf |
| securityfocus | www.securityfocus.com/bid/51046 |
# SPDX-FileCopyrightText: 2011 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.103366");
script_cve_id("CVE-2011-4859", "CVE-2011-4860", "CVE-2011-4861");
script_version("2023-07-28T05:05:23+0000");
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("Schneider Electric Quantum Ethernet Module Hardcoded Credentials (FTP)");
script_tag(name:"last_modification", value:"2023-07-28 05:05:23 +0000 (Fri, 28 Jul 2023)");
script_tag(name:"creation_date", value:"2011-12-14 10:13:05 +0100 (Wed, 14 Dec 2011)");
script_category(ACT_ATTACK);
script_family("Default Accounts");
script_copyright("Copyright (C) 2011 Greenbone AG");
script_dependencies("ftpserver_detect_type_nd_version.nasl", "gb_default_credentials_options.nasl");
script_require_ports("Services/ftp", 21);
script_mandatory_keys("ftp/ftp_ready_banner/detected");
script_exclude_keys("default_credentials/disable_default_account_checks");
script_xref(name:"URL", value:"http://www.securityfocus.com/bid/51046");
script_xref(name:"URL", value:"http://www.us-cert.gov/control_systems/pdf/ICS-ALERT-11-346-01.pdf");
script_xref(name:"URL", value:"http://reversemode.com/index.php?option=com_content&task=view&id=80&Itemid=1");
script_tag(name:"summary", value:"Schneider Electric Quantum Ethernet Module is using known
hardcoded credentials.");
script_tag(name:"impact", value:"Attackers can exploit this issue to gain access to the Telnet port
service, Windriver Debug port service, and FTP service. Attackers can exploit this vulnerability to
execute arbitrary code within the context of the vulnerable device.");
script_tag(name:"solution", value:"Updates are available. Please see the references for more information.");
script_tag(name:"qod_type", value:"remote_vul");
script_tag(name:"solution_type", value:"VendorFix");
exit(0);
}
if(get_kb_item("default_credentials/disable_default_account_checks"))
exit(0);
include("ftp_func.inc");
include("misc_func.inc");
include("port_service_func.inc");
port = ftp_get_port( default:21 );
banner = ftp_get_banner( port:port );
if( ! banner || "220 FTP server ready" >!< banner )
exit( 0 );
soc = open_sock_tcp( port );
if( ! soc ) exit( 0 );
close( soc );
credentials = make_array( "pcfactory", "pcfactory",
"loader", "fwdownload",
"ntpupdate", "ntpupdate",
"sysdiag", "factorycast@schneider",
"test", "testingpw",
"USER", "USER",
"USER", "USERUSER",
"webserver", "webpages",
"fdrusers", "sresurdf",
"nic2212", "poiuypoiuy",
"nimrohs2212", "qwertyqwerty",
"nip2212", "fcsdfcsd",
"ftpuser", "ftpuser",
"noe77111_v500", "RcSyyebczS",
"AUTCSE", "RybQRceeSd",
"AUT_CSE", "cQdd9debez",
"target", "RcQbRbzRyc" );
foreach credential( keys( credentials ) ) {
soc = open_sock_tcp( port );
if( ! soc ) continue;
if( ftp_authenticate( socket:soc, user:credential, pass:credentials[credential] ) ) {
result = ftp_send_cmd( socket:soc, cmd:string( "syst" ) );
if( "VxWorks" >!< result ) continue;
report = string( "It was possible to login via FTP into the remote host using the following\nUsername/Password combination:\n\n",
credential, ":", credentials[credential], "\n\nWhich produces the following output for the 'syst' command:\n\n",
result, "\n" );
security_message( port:port, data:report );
close( soc );
exit( 0 );
}
close( soc );
}
exit( 99 );
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