├── BYOVD_exploits └── soon ├── HEVD_exploits_win7 ├── arbitrary_overwrite.py ├── null_pointer_dereference.py ├── pool_overflow.c ├── stack_overflow.py ├── uninitialized_stack_variable.py └── use_after_free.ps1 ├── README.md ├── WinDbg_Exploit_Dev_CheatSheet.pdf └── pic.png /BYOVD_exploits/soon: -------------------------------------------------------------------------------- 1 | soon 2 | -------------------------------------------------------------------------------- /HEVD_exploits_win7/arbitrary_overwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/HEVD_exploits_win7/arbitrary_overwrite.py -------------------------------------------------------------------------------- /HEVD_exploits_win7/null_pointer_dereference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/HEVD_exploits_win7/null_pointer_dereference.py -------------------------------------------------------------------------------- /HEVD_exploits_win7/pool_overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/HEVD_exploits_win7/pool_overflow.c -------------------------------------------------------------------------------- /HEVD_exploits_win7/stack_overflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/HEVD_exploits_win7/stack_overflow.py -------------------------------------------------------------------------------- /HEVD_exploits_win7/uninitialized_stack_variable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/HEVD_exploits_win7/uninitialized_stack_variable.py -------------------------------------------------------------------------------- /HEVD_exploits_win7/use_after_free.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/HEVD_exploits_win7/use_after_free.ps1 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/README.md -------------------------------------------------------------------------------- /WinDbg_Exploit_Dev_CheatSheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/WinDbg_Exploit_Dev_CheatSheet.pdf -------------------------------------------------------------------------------- /pic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tr3sp4ss3rexe/Windows-Kernel-Exploitation/HEAD/pic.png --------------------------------------------------------------------------------