├── .gitignore ├── .vscode ├── c_cpp_properties.json └── tasks.json ├── EnableKdPrint.bat ├── README.md ├── WinDBG Workspaces ├── WinDBG-KernelMode.wew └── WinDBG-UserMode.wew ├── Windows 10 x64 (1709) ├── ArbitraryOverwrite │ ├── Makefile │ └── exploit.c └── StackOverflow │ ├── Makefile │ └── exploit.c ├── Windows 8.1 x64 (9600) ├── ArbitraryOverwrite │ ├── compile.bat │ └── exploit.c ├── DoubleFetch │ ├── Makefile │ └── exploit.c └── StackOverflow │ └── exploit.c └── hevd.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /EnableKdPrint.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/EnableKdPrint.bat -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/README.md -------------------------------------------------------------------------------- /WinDBG Workspaces/WinDBG-KernelMode.wew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/WinDBG Workspaces/WinDBG-KernelMode.wew -------------------------------------------------------------------------------- /WinDBG Workspaces/WinDBG-UserMode.wew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/WinDBG Workspaces/WinDBG-UserMode.wew -------------------------------------------------------------------------------- /Windows 10 x64 (1709)/ArbitraryOverwrite/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 10 x64 (1709)/ArbitraryOverwrite/Makefile -------------------------------------------------------------------------------- /Windows 10 x64 (1709)/ArbitraryOverwrite/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 10 x64 (1709)/ArbitraryOverwrite/exploit.c -------------------------------------------------------------------------------- /Windows 10 x64 (1709)/StackOverflow/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 10 x64 (1709)/StackOverflow/Makefile -------------------------------------------------------------------------------- /Windows 10 x64 (1709)/StackOverflow/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 10 x64 (1709)/StackOverflow/exploit.c -------------------------------------------------------------------------------- /Windows 8.1 x64 (9600)/ArbitraryOverwrite/compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 8.1 x64 (9600)/ArbitraryOverwrite/compile.bat -------------------------------------------------------------------------------- /Windows 8.1 x64 (9600)/ArbitraryOverwrite/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 8.1 x64 (9600)/ArbitraryOverwrite/exploit.c -------------------------------------------------------------------------------- /Windows 8.1 x64 (9600)/DoubleFetch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 8.1 x64 (9600)/DoubleFetch/Makefile -------------------------------------------------------------------------------- /Windows 8.1 x64 (9600)/DoubleFetch/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 8.1 x64 (9600)/DoubleFetch/exploit.c -------------------------------------------------------------------------------- /Windows 8.1 x64 (9600)/StackOverflow/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/Windows 8.1 x64 (9600)/StackOverflow/exploit.c -------------------------------------------------------------------------------- /hevd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hugsy/hevd/HEAD/hevd.h --------------------------------------------------------------------------------