Files
hacksysteam-HackSysExtremeV…/Exploit/Source/PoolOverflow.h
T
2015-05-28 15:05:20 +05:30

58 lines
1.9 KiB
C

/*++
/$$ /$$ /$$ /$$$$$$
| $$ | $$ | $$ /$$__ $$
| $$ | $$ /$$$$$$ /$$$$$$$| $$ /$$| $$ \__/ /$$ /$$ /$$$$$$$
| $$$$$$$$ |____ $$ /$$_____/| $$ /$$/| $$$$$$ | $$ | $$ /$$_____/
| $$__ $$ /$$$$$$$| $$ | $$$$$$/ \____ $$| $$ | $$| $$$$$$
| $$ | $$ /$$__ $$| $$ | $$_ $$ /$$ \ $$| $$ | $$ \____ $$
| $$ | $$| $$$$$$$| $$$$$$$| $$ \ $$| $$$$$$/| $$$$$$$ /$$$$$$$/
|__/ |__/ \_______/ \_______/|__/ \__/ \______/ \____ $$|_______/
/$$ | $$
| $$$$$$/
\______/
Copyright (C) 2010-2015 HackSys Team. All rights reserved.
This file is part of HackSys Extreme Vulnerable Driver Exploit.
See the file 'LICENSE' for copying permission.
Author : Ashfaq Ansari
Contact: ashfaq_ansari1989[at]hotmail.com
Website: http://hacksys.vfreaks.com
Project Name:
HackSys Extreme Vulnerable Driver Exploit
Module Name:
PoolOverflow.h
Abstract:
This module implements the data structures used by the
exploit for Pool Overflow Vulnerability implemented in
HackSys Extreme Vulnerable Driver.
--*/
#ifndef __POOL_OVERFLOW_H__
#define __POOL_OVERFLOW_H__
#pragma once
#include "Common.h"
#define POOL_BUFFER_SIZE 504
#define TYPE_INDEX_OVERWRITE 40
HANDLE hEventObjectArrayA[10000];
HANDLE hEventObjectArrayB[5000];
VOID FreeEventObjects();
VOID SprayNonPagedPoolWithEventObjects();
DWORD WINAPI PoolOverflowThread(LPVOID lpParameter);
VOID CreateHolesInNonPagedPoolByCoalescingEventObjects();
#endif //__POOL_OVERFLOW_H__