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

54 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:
ArbitraryOverwrite.h
Abstract:
This module implements the data structures used by the
exploit for Arbitrary Memory Overwrite Vulnerability
implemented in HackSys Extreme Vulnerable Driver.
--*/
#ifndef __ARBITRARY_OVERWRITE_H__
#define __ARBITRARY_OVERWRITE_H__
#pragma once
#include "Common.h"
typedef struct _WRITE_WHAT_WHERE {
PULONG What;
PULONG Where;
} WRITE_WHAT_WHERE, *PWRITE_WHAT_WHERE;
DWORD WINAPI ArbitraryOverwriteThread(LPVOID lpParameter);
#endif //__ARBITRARY_OVERWRITE_H__