├── COPYRIGHT.txt ├── LICENSE.txt ├── README.md └── offensiveph ├── Hook2Kph ├── Hook2Kph.aps ├── Hook2Kph.rc ├── Hook2Kph.vcxproj ├── Hook2Kph.vcxproj.filters ├── Hook2Kph.vcxproj.user ├── detours.h ├── detours.lib ├── detours.pdb ├── dllmain.cpp ├── extract.cpp ├── extract.h ├── framework.h ├── hook.cpp ├── hook.h ├── kph.c ├── kphapi.h ├── kphuser.h ├── kprocesshacker2_x64.sys ├── pch.cpp ├── pch.h ├── phnt │ ├── LICENSE │ ├── README.md │ ├── ntd3dkmt.h │ ├── ntdbg.h │ ├── ntexapi.h │ ├── ntgdi.h │ ├── ntioapi.h │ ├── ntkeapi.h │ ├── ntldr.h │ ├── ntlpcapi.h │ ├── ntmisc.h │ ├── ntmmapi.h │ ├── ntnls.h │ ├── ntobapi.h │ ├── ntpebteb.h │ ├── ntpfapi.h │ ├── ntpnpapi.h │ ├── ntpoapi.h │ ├── ntpsapi.h │ ├── ntregapi.h │ ├── ntrtl.h │ ├── ntsam.h │ ├── ntseapi.h │ ├── ntsmss.h │ ├── nttmapi.h │ ├── nttp.h │ ├── ntwow64.h │ ├── ntxcapi.h │ ├── ntzwapi.h │ ├── phnt.h │ ├── phnt_ntdef.h │ ├── phnt_windows.h │ ├── subprocesstag.h │ └── winsta.h └── resource.h ├── offensiveph.sln └── offensiveph ├── base.h ├── extract.cpp ├── extract.h ├── getpayload.cpp ├── getpayload.h ├── kph.c ├── kphapi.h ├── kphuser.h ├── kprocesshacker2_x64.sys ├── main.cpp ├── modules.cpp ├── offensive.cpp ├── offensive.h ├── offensiveph.aps ├── offensiveph.rc ├── offensiveph.vcxproj ├── offensiveph.vcxproj.filters ├── offensiveph.vcxproj.user ├── ph.cpp ├── phnt ├── LICENSE ├── README.md ├── ntd3dkmt.h ├── ntdbg.h ├── ntexapi.h ├── ntgdi.h ├── ntioapi.h ├── ntkeapi.h ├── ntldr.h ├── ntlpcapi.h ├── ntmisc.h ├── ntmmapi.h ├── ntnls.h ├── ntobapi.h ├── ntpebteb.h ├── ntpfapi.h ├── ntpnpapi.h ├── ntpoapi.h ├── ntpsapi.h ├── ntregapi.h ├── ntrtl.h ├── ntsam.h ├── ntseapi.h ├── ntsmss.h ├── nttmapi.h ├── nttp.h ├── ntwow64.h ├── ntxcapi.h ├── ntzwapi.h ├── phnt.h ├── phnt_ntdef.h ├── phnt_windows.h ├── subprocesstag.h └── winsta.h ├── phuser.h ├── resource.h ├── thread.cpp └── thread.h /COPYRIGHT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/COPYRIGHT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/README.md -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/Hook2Kph.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/Hook2Kph.aps -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/Hook2Kph.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/Hook2Kph.rc -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/Hook2Kph.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/Hook2Kph.vcxproj -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/Hook2Kph.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/Hook2Kph.vcxproj.filters -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/Hook2Kph.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/Hook2Kph.vcxproj.user -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/detours.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/detours.lib -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/detours.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/detours.pdb -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/dllmain.cpp -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/extract.cpp -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/extract.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "framework.h" 3 | 4 | DWORD ExtractDriver(LPWSTR lpFilePath, HMODULE hModule); 5 | -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/framework.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/hook.cpp -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/hook.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/kph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/kph.c -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/kphapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/kphapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/kphuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/kphuser.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/kprocesshacker2_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/kprocesshacker2_x64.sys -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/pch.cpp -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/pch.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/LICENSE -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/README.md -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntd3dkmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntd3dkmt.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntdbg.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntexapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntexapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntgdi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntioapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntkeapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntkeapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntldr.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntlpcapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntmisc.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntmmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntmmapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntnls.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntobapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntobapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntpebteb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntpebteb.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntpfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntpfapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntpnpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntpnpapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntpoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntpoapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntpsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntpsapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntregapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntregapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntrtl.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntsam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntsam.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntseapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntsmss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntsmss.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/nttmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/nttmapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/nttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/nttp.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntwow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntwow64.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntxcapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/ntzwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/ntzwapi.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/phnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/phnt.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/phnt_ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/phnt_ntdef.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/phnt_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/phnt_windows.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/subprocesstag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/subprocesstag.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/phnt/winsta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/phnt/winsta.h -------------------------------------------------------------------------------- /offensiveph/Hook2Kph/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/Hook2Kph/resource.h -------------------------------------------------------------------------------- /offensiveph/offensiveph.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph.sln -------------------------------------------------------------------------------- /offensiveph/offensiveph/base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/base.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/extract.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/extract.cpp -------------------------------------------------------------------------------- /offensiveph/offensiveph/extract.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | #include "base.h" 3 | 4 | DWORD ExtractDriver(LPWSTR lpFilePath); 5 | -------------------------------------------------------------------------------- /offensiveph/offensiveph/getpayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/getpayload.cpp -------------------------------------------------------------------------------- /offensiveph/offensiveph/getpayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/getpayload.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/kph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/kph.c -------------------------------------------------------------------------------- /offensiveph/offensiveph/kphapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/kphapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/kphuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/kphuser.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/kprocesshacker2_x64.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/kprocesshacker2_x64.sys -------------------------------------------------------------------------------- /offensiveph/offensiveph/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/main.cpp -------------------------------------------------------------------------------- /offensiveph/offensiveph/modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/modules.cpp -------------------------------------------------------------------------------- /offensiveph/offensiveph/offensive.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/offensive.cpp -------------------------------------------------------------------------------- /offensiveph/offensiveph/offensive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/offensive.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/offensiveph.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/offensiveph.aps -------------------------------------------------------------------------------- /offensiveph/offensiveph/offensiveph.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/offensiveph.rc -------------------------------------------------------------------------------- /offensiveph/offensiveph/offensiveph.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/offensiveph.vcxproj -------------------------------------------------------------------------------- /offensiveph/offensiveph/offensiveph.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/offensiveph.vcxproj.filters -------------------------------------------------------------------------------- /offensiveph/offensiveph/offensiveph.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/offensiveph.vcxproj.user -------------------------------------------------------------------------------- /offensiveph/offensiveph/ph.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/ph.cpp -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/LICENSE -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/README.md -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntd3dkmt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntd3dkmt.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntdbg.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntexapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntexapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntgdi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntioapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntkeapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntkeapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntldr.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntlpcapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntmisc.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntmmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntmmapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntnls.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntobapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntobapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntpebteb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntpebteb.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntpfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntpfapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntpnpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntpnpapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntpoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntpoapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntpsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntpsapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntregapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntregapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntrtl.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntsam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntsam.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntseapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntsmss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntsmss.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/nttmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/nttmapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/nttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/nttp.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntwow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntwow64.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntxcapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/ntzwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/ntzwapi.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/phnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/phnt.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/phnt_ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/phnt_ntdef.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/phnt_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/phnt_windows.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/subprocesstag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/subprocesstag.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phnt/winsta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phnt/winsta.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/phuser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/phuser.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/resource.h -------------------------------------------------------------------------------- /offensiveph/offensiveph/thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/thread.cpp -------------------------------------------------------------------------------- /offensiveph/offensiveph/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedSection/OffensivePH/HEAD/offensiveph/offensiveph/thread.h --------------------------------------------------------------------------------