├── README.md ├── ShimDB └── ShimEngineBase.sdb ├── compiled └── ProjectZero.exe ├── source ├── AppHelpDef.h ├── LockStuff.cpp ├── MainHeader.h ├── Memory.cpp ├── ProjectZero.cpp ├── ProjectZero.sln ├── ProjectZero.vcproj ├── RunTimeKill.cpp ├── Utils.cpp ├── ntdll.h ├── ntdll.lib └── shellcode_ │ ├── makeit2.bat │ └── shellcode.asm └── tools └── shellnoob.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/README.md -------------------------------------------------------------------------------- /ShimDB/ShimEngineBase.sdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/ShimDB/ShimEngineBase.sdb -------------------------------------------------------------------------------- /compiled/ProjectZero.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/compiled/ProjectZero.exe -------------------------------------------------------------------------------- /source/AppHelpDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/AppHelpDef.h -------------------------------------------------------------------------------- /source/LockStuff.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/LockStuff.cpp -------------------------------------------------------------------------------- /source/MainHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/MainHeader.h -------------------------------------------------------------------------------- /source/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/Memory.cpp -------------------------------------------------------------------------------- /source/ProjectZero.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/ProjectZero.cpp -------------------------------------------------------------------------------- /source/ProjectZero.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/ProjectZero.sln -------------------------------------------------------------------------------- /source/ProjectZero.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/ProjectZero.vcproj -------------------------------------------------------------------------------- /source/RunTimeKill.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/RunTimeKill.cpp -------------------------------------------------------------------------------- /source/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/Utils.cpp -------------------------------------------------------------------------------- /source/ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/ntdll.h -------------------------------------------------------------------------------- /source/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/ntdll.lib -------------------------------------------------------------------------------- /source/shellcode_/makeit2.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/shellcode_/makeit2.bat -------------------------------------------------------------------------------- /source/shellcode_/shellcode.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/source/shellcode_/shellcode.asm -------------------------------------------------------------------------------- /tools/shellnoob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AlephNull314/AbsoluteZero/HEAD/tools/shellnoob.py --------------------------------------------------------------------------------