| Reporter | Title | Published | Views | Family All 19 |
|---|---|---|---|---|
| CVE-2009-0824 | 12 Mar 200900:00 | – | circl | |
| CVE-2009-0824 | 14 Mar 200918:00 | – | cve | |
| CVE-2009-0824 | 14 Mar 200918:00 | – | cvelist | |
| EUVD-2009-0821 | 7 Oct 202500:30 | – | euvd | |
| KLA10064 DoS vulnerability in SlySoft | 14 Mar 200900:00 | – | kaspersky | |
| Improve kernel security with the new Microsoft Vulnerable and Malicious Driver Reporting Center | 8 Dec 202117:00 | – | mmpc | |
| Secured-core PCs: A brief showcase of chip-to-cloud security against kernel attacks | 17 Mar 202016:00 | – | mssecure | |
| Improve kernel security with the new Microsoft Vulnerable and Malicious Driver Reporting Center | 8 Dec 202117:00 | – | mssecure | |
| Router vulnerability analysis the sixth bullet: CVE-2018-7445 MikroTik router system buffer overflow vulnerability-vulnerability warning-the black bar safety net | 24 Apr 201800:00 | – | myhack58 | |
| CVE-2009-0824 | 14 Mar 200918:30 | – | nvd |
| Source | Link |
|---|---|
| secunia | www.secunia.com/advisories/34289 |
| secunia | www.secunia.com/advisories/34287 |
| secunia | www.secunia.com/advisories/34288 |
| securityfocus | www.securityfocus.com/archive/1/archive/1/501713/100/0/threaded |
| secunia | www.secunia.com/advisories/34269 |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_slysoft_prdts_code_exec_vuln.nasl 6516 2017-07-04 12:20:47Z cfischer $
#
# SlySoft Product(s) Code Execution Vulnerability
#
# Authors:
# Sharath S <[email protected]>
#
# Copyright:
# Copyright (c) 2009 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 will let the attacker cause memory corruption and
can allow remote code execution in the context of the affected system,
which result in service crash.
Impact Level: System/Application";
tag_affected = "SlySoft AnyDVD version prior to 6.5.2.6
SlySoft CloneCD version 5.3.1.3 and prior
SlySoft CloneDVD version 2.9.2.0 and prior
SlySoft Virtual CloneDrive version 5.4.2.3 and prior";
tag_insight = "METHOD_NEITHER communication method for IOCTLs does not properly validate
a buffer associated with the Irp object of user space data provided to
the ElbyCDIO.sys kernel driver.";
tag_solution = "Upgrade to higher versions accordingly
http://www.slysoft.com/en/download.html";
tag_summary = "This host is installed with SlySoft Product(s) and are prone
to Code Execution Vulnerability.";
if(description)
{
script_id(800392);
script_version("$Revision: 6516 $");
script_tag(name:"last_modification", value:"$Date: 2017-07-04 14:20:47 +0200 (Tue, 04 Jul 2017) $");
script_tag(name:"creation_date", value:"2009-04-16 16:39:16 +0200 (Thu, 16 Apr 2009)");
script_tag(name:"cvss_base", value:"4.9");
script_tag(name:"cvss_base_vector", value:"AV:L/AC:L/Au:N/C:N/I:N/A:C");
script_cve_id("CVE-2009-0824");
script_bugtraq_id(34103);
script_name("SlySoft Product(s) Code Execution Vulnerability");
script_xref(name : "URL" , value : "http://secunia.com/advisories/34269");
script_xref(name : "URL" , value : "http://secunia.com/advisories/34289");
script_xref(name : "URL" , value : "http://secunia.com/advisories/34287");
script_xref(name : "URL" , value : "http://secunia.com/advisories/34288");
script_xref(name : "URL" , value : "http://www.securityfocus.com/archive/1/archive/1/501713/100/0/threaded");
script_tag(name:"qod_type", value:"executable_version");
script_category(ACT_GATHER_INFO);
script_copyright("Copyright (C) 2009 Greenbone Networks GmbH");
script_family("Buffer overflow");
script_dependencies("gb_slysoft_prdts_detect.nasl");
script_mandatory_keys("Slysoft/Products/Installed");
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");
# Grep the version for AnyDVD prior to 6.5.2.6
anydvdVer = get_kb_item("AnyDVD/Ver");
if(anydvdVer)
{
if(version_is_less(version:anydvdVer, test_version:"6.5.2.6"))
{
security_message(0);
exit(0);
}
}
# Grep the version for CloneCD 5.3.1.3 and prior
clonecdVer = get_kb_item("CloneCD/Ver");
if(clonecdVer)
{
if(version_is_less_equal(version:clonecdVer, test_version:"5.3.1.3"))
{
security_message(0);
exit(0);
}
}
# Grep the version for CloneDVD 2.9.2.0 and prior
clonedvdVer = get_kb_item("CloneDVD/Ver");
if(clonedvdVer)
{
if(version_is_less_equal(version:clonedvdVer, test_version:"2.9.2.0"))
{
security_message(0);
exit(0);
}
}
# Grep the version for Virtual CloneDrive 5.4.2.3 and prior
vcdVer = get_kb_item("VirtualCloneDrive/Ver");
if(vcdVer)
{
if(version_is_less_equal(version:vcdVer, test_version:"5.4.2.3")){
security_message(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