├── CodeInjection library ├── ProcessInject.cpp ├── ProcessInject.h ├── README.md └── Source.cpp ├── GetAlterableThread ├── README.md └── Source.cpp ├── GetWorkingSet ├── README.md └── Source.cpp ├── GhostInjector ├── README.md └── Source.cpp ├── GhostMemory ├── GhostMemory_Kernel │ └── Source.cpp ├── GhostMemory_User │ └── Source.cpp └── README.md ├── README.md ├── VadWalkr ├── README.md ├── kernel │ └── VadWalkr_kernel.cpp └── user │ └── VadWalkr_User.cpp └── XeonPack ├── Crypto.cpp ├── Crypto.h ├── Debug.h ├── Error.h ├── Memory.h ├── PE.cpp ├── PE.h ├── README.md ├── Source.cpp ├── XeonPack.vcxproj ├── XeonPack.vcxproj.filters ├── XeonPack.vcxproj.user └── XeonTemplates.h /CodeInjection library/ProcessInject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/CodeInjection library/ProcessInject.cpp -------------------------------------------------------------------------------- /CodeInjection library/ProcessInject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/CodeInjection library/ProcessInject.h -------------------------------------------------------------------------------- /CodeInjection library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/CodeInjection library/README.md -------------------------------------------------------------------------------- /CodeInjection library/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/CodeInjection library/Source.cpp -------------------------------------------------------------------------------- /GetAlterableThread/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GetAlterableThread/README.md -------------------------------------------------------------------------------- /GetAlterableThread/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GetAlterableThread/Source.cpp -------------------------------------------------------------------------------- /GetWorkingSet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GetWorkingSet/README.md -------------------------------------------------------------------------------- /GetWorkingSet/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GetWorkingSet/Source.cpp -------------------------------------------------------------------------------- /GhostInjector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GhostInjector/README.md -------------------------------------------------------------------------------- /GhostInjector/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GhostInjector/Source.cpp -------------------------------------------------------------------------------- /GhostMemory/GhostMemory_Kernel/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GhostMemory/GhostMemory_Kernel/Source.cpp -------------------------------------------------------------------------------- /GhostMemory/GhostMemory_User/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GhostMemory/GhostMemory_User/Source.cpp -------------------------------------------------------------------------------- /GhostMemory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/GhostMemory/README.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/README.md -------------------------------------------------------------------------------- /VadWalkr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/VadWalkr/README.md -------------------------------------------------------------------------------- /VadWalkr/kernel/VadWalkr_kernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/VadWalkr/kernel/VadWalkr_kernel.cpp -------------------------------------------------------------------------------- /VadWalkr/user/VadWalkr_User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/VadWalkr/user/VadWalkr_User.cpp -------------------------------------------------------------------------------- /XeonPack/Crypto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/Crypto.cpp -------------------------------------------------------------------------------- /XeonPack/Crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/Crypto.h -------------------------------------------------------------------------------- /XeonPack/Debug.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | -------------------------------------------------------------------------------- /XeonPack/Error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/Error.h -------------------------------------------------------------------------------- /XeonPack/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/Memory.h -------------------------------------------------------------------------------- /XeonPack/PE.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/PE.cpp -------------------------------------------------------------------------------- /XeonPack/PE.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/PE.h -------------------------------------------------------------------------------- /XeonPack/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/README.md -------------------------------------------------------------------------------- /XeonPack/Source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/Source.cpp -------------------------------------------------------------------------------- /XeonPack/XeonPack.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/XeonPack.vcxproj -------------------------------------------------------------------------------- /XeonPack/XeonPack.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/XeonPack.vcxproj.filters -------------------------------------------------------------------------------- /XeonPack/XeonPack.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/XeonPack.vcxproj.user -------------------------------------------------------------------------------- /XeonPack/XeonTemplates.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veil-ivy/Utils/HEAD/XeonPack/XeonTemplates.h --------------------------------------------------------------------------------