├── LICENSE ├── README.md └── src ├── Skrull.vcxproj ├── armor.h ├── ghost-2-2.ico ├── ghosting.h ├── misc.h ├── ntlib ├── ntddk.h ├── ntdll_types.h ├── nttpp.h ├── util.h ├── x64 │ └── ntdll.lib └── x86 │ └── ntdll.lib ├── skrull.cpp └── windows_struct.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/README.md -------------------------------------------------------------------------------- /src/Skrull.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/Skrull.vcxproj -------------------------------------------------------------------------------- /src/armor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/armor.h -------------------------------------------------------------------------------- /src/ghost-2-2.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ghost-2-2.ico -------------------------------------------------------------------------------- /src/ghosting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ghosting.h -------------------------------------------------------------------------------- /src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/misc.h -------------------------------------------------------------------------------- /src/ntlib/ntddk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ntlib/ntddk.h -------------------------------------------------------------------------------- /src/ntlib/ntdll_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ntlib/ntdll_types.h -------------------------------------------------------------------------------- /src/ntlib/nttpp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ntlib/nttpp.h -------------------------------------------------------------------------------- /src/ntlib/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ntlib/util.h -------------------------------------------------------------------------------- /src/ntlib/x64/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ntlib/x64/ntdll.lib -------------------------------------------------------------------------------- /src/ntlib/x86/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/ntlib/x86/ntdll.lib -------------------------------------------------------------------------------- /src/skrull.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/skrull.cpp -------------------------------------------------------------------------------- /src/windows_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaaddress1/Skrull/HEAD/src/windows_struct.h --------------------------------------------------------------------------------