├── Ghostwolf.sln ├── Ghostwolf ├── Application.cpp ├── Application.h ├── Ghostwolf.vcxproj ├── Ghostwolf.vcxproj.filters ├── Ghostwolf.vcxproj.user ├── Helper.cpp ├── Helper.h ├── Main.cpp ├── Memory.cpp ├── Memory.h ├── PEB.h ├── Process.cpp └── Process.h ├── README.md └── logo.png /Ghostwolf.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf.sln -------------------------------------------------------------------------------- /Ghostwolf/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Application.cpp -------------------------------------------------------------------------------- /Ghostwolf/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Application.h -------------------------------------------------------------------------------- /Ghostwolf/Ghostwolf.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Ghostwolf.vcxproj -------------------------------------------------------------------------------- /Ghostwolf/Ghostwolf.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Ghostwolf.vcxproj.filters -------------------------------------------------------------------------------- /Ghostwolf/Ghostwolf.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Ghostwolf.vcxproj.user -------------------------------------------------------------------------------- /Ghostwolf/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Helper.cpp -------------------------------------------------------------------------------- /Ghostwolf/Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Helper.h -------------------------------------------------------------------------------- /Ghostwolf/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Main.cpp -------------------------------------------------------------------------------- /Ghostwolf/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Memory.cpp -------------------------------------------------------------------------------- /Ghostwolf/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Memory.h -------------------------------------------------------------------------------- /Ghostwolf/PEB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/PEB.h -------------------------------------------------------------------------------- /Ghostwolf/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Process.cpp -------------------------------------------------------------------------------- /Ghostwolf/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/Ghostwolf/Process.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/README.md -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SickleSec/GhostWolf/HEAD/logo.png --------------------------------------------------------------------------------