| Reporter | Title | Published | Views | Family All 8 |
|---|---|---|---|---|
| IBM solidDB solid.exe Authentication Bypass (CVE-2011-1560) | 16 May 201100:00 | – | checkpoint_advisories | |
| CVE-2011-1560 | 5 Apr 201115:00 | – | cve | |
| CVE-2011-1560 | 5 Apr 201115:00 | – | cvelist | |
| EUVD-2011-1561 | 7 Oct 202500:30 | – | euvd | |
| CVE-2011-1560 | 5 Apr 201115:19 | – | nvd | |
| IBM solidDB User Authentication Bypass Vulnerability | 18 May 201100:00 | – | openvas | |
| Authentication flaw | 5 Apr 201115:19 | – | prion | |
| IBM solidDB Password Hash Length Authentication Bypass | 8 Apr 201100:00 | – | nessus |
| Source | Link |
|---|---|
| www-304 | www.www-304.ibm.com/support/docview.wss |
| xforce | www.xforce.iss.net/xforce/xfdb/66455 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_soliddb_auth_bypass_vuln.nasl 7024 2017-08-30 11:51:43Z teissa $
#
# IBM solidDB User Authentication Bypass Vulnerability
#
# Authors:
# Antu Sanadi <[email protected]>
#
# Copyright:
# Copyright (c) 2011 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 could allow remote attackers to bypass authentication.
Impact Level: Application";
tag_affected = "IBM solidDB version before 4.5.181, 6.0.x before 6.0.1067,
6.1.x and 6.3.x before 6.3.47, and 6.5.x before 6.5.0.3";
tag_insight = "The flaw exists within the 'solid.exe' process which listens by default on
TCP ports 1315, 1964 and 2315. The authentication protocol allows a remote
attacker to specify the length of a password hash. An attacker could bypass
the authentication by specifying short length value.";
tag_solution = "Apply the patches from below link,
https://www-304.ibm.com/support/docview.wss?uid=swg21474552";
tag_summary = "This host is running IBM solidDB and is prone to authentication bypass
vulnerability.";
if(description)
{
script_id(801938);
script_version("$Revision: 7024 $");
script_tag(name:"last_modification", value:"$Date: 2017-08-30 13:51:43 +0200 (Wed, 30 Aug 2017) $");
script_tag(name:"creation_date", value:"2011-05-18 15:37:30 +0200 (Wed, 18 May 2011)");
script_cve_id("CVE-2011-1560");
script_tag(name:"cvss_base", value:"9.3");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:C/I:C/A:C");
script_name("IBM solidDB User Authentication Bypass Vulnerability");
script_xref(name : "URL" , value : "http://xforce.iss.net/xforce/xfdb/66455");
script_xref(name : "URL" , value : "https://www-304.ibm.com/support/docview.wss?uid=swg21474552");
script_tag(name:"qod_type", value:"remote_banner");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (c) 2011 Greenbone Networks GmbH");
script_family("Denial of Service");
script_dependencies("gb_ibm_soliddb_detect.nasl");
script_require_ports("Services/soliddb", 1315);
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);
}
include("version_func.inc");
## Get solidDB default port
port = get_kb_item("Services/soliddb");
if(!port){
port=1315;
}
## check the port status
if(!get_port_state(port)){
exit(0);
}
## Get the version from kb
if(!ver = get_kb_item(string("soliddb/",port,"/version"))){
exit(0);
}
version = eregmatch(pattern:"([0-9]+\.[0-9]+\.[0-9.]+)", string: ver);
if(version[1] != NULL){
ver = version[1];
}
## Check the version less than 4.5.181
if(version_is_less(version:ver, test_version:"4.5.181"))
{
security_message(port:port);
exit(0);
}
## Check for the version 6.0.x before 6.0.1067
if(ver =~ "^6\.0\.*")
{
if(version_is_less(version:ver, test_version:"6.0.1067"))
{
security_message(port:port);
exit(0);
}
}
## Check the version 6.1.x
if(ver =~ "^6\.1\.*")
{
security_message(port:port);
exit(0);
}
## Check the version 6.3.x before 6.3.47(06.30.0047)
if(ver =~ "^06\.3.*")
{
if(version_is_less(version:ver, test_version:"06.30.0047"))
{
security_message(port:port);
exit(0);
}
}
## Check the version 6.5.x before 6.5.0.3
if(ver =~ "^6\.5\.*")
{
if(version_is_less(version:ver, test_version:"6.5.0.3")){
security_message(port:port);
}
}
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