mirror of
https://github.com/hacksysteam/HackSysExtremeVulnerableDriver
synced 2026-06-08 14:31:02 +00:00
53 lines
1.7 KiB
C
53 lines
1.7 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:
|
|
StackOverflowGS.h
|
|
|
|
Abstract:
|
|
This module implements the data structures used by the
|
|
exploit for Stack Overflow Vulnerability protected by
|
|
GS cookies implemented in HackSys Extreme Vulnerable
|
|
Driver.
|
|
|
|
--*/
|
|
|
|
#ifndef __STACK_OVERFLOW_GS_H__
|
|
#define __STACK_OVERFLOW_GS_H__
|
|
|
|
#pragma once
|
|
|
|
#include "Common.h"
|
|
|
|
#define RAISE_EXCEPTION_IN_KERNEL_MODE 0x4
|
|
#define SHARED_MEMORY_NAME "HackSysExtremeVulnerableDriverSharedMemory"
|
|
|
|
DWORD WINAPI StackOverflowGSThread(LPVOID lpParameter);
|
|
|
|
#endif //__STACK_OVERFLOW_GS_H__
|