├── .gitattributes ├── .gitignore ├── Banshee.sln ├── Banshee ├── AddressUtils.cpp ├── AddressUtils.hpp ├── AutoLock.hpp ├── Banshee.inf ├── Banshee.vcxproj ├── Banshee.vcxproj.filters ├── Banshee.vcxproj.user ├── CallbackUtils.cpp ├── CallbackUtils.hpp ├── Commands.cpp ├── Commands.hpp ├── Debug.hpp ├── Driver.cpp ├── DriverMeta.hpp ├── FileUtils.cpp ├── FileUtils.hpp ├── Globals.cpp ├── Globals.hpp ├── Injection.cpp ├── Injection.hpp ├── Keylogger.cpp ├── Keylogger.hpp ├── MIsc.cpp ├── MemoryUtils.cpp ├── MemoryUtils.hpp ├── Misc.hpp ├── ProcessUtils.cpp ├── ProcessUtils.hpp ├── VK.hpp ├── Vector.cpp ├── Vector.hpp └── WinTypes.hpp ├── BansheeClient ├── Banshee.hpp ├── BansheeClient.cpp ├── BansheeClient.vcxproj ├── BansheeClient.vcxproj.filters ├── BansheeClient.vcxproj.user └── Logger.hpp ├── README.md └── img ├── Banshee.jpg ├── CLI.png ├── Callbacks.png ├── EPROCESS_ProcessLinksLock.png └── EPROCESS_Protection.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/.gitignore -------------------------------------------------------------------------------- /Banshee.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee.sln -------------------------------------------------------------------------------- /Banshee/AddressUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/AddressUtils.cpp -------------------------------------------------------------------------------- /Banshee/AddressUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/AddressUtils.hpp -------------------------------------------------------------------------------- /Banshee/AutoLock.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/AutoLock.hpp -------------------------------------------------------------------------------- /Banshee/Banshee.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Banshee.inf -------------------------------------------------------------------------------- /Banshee/Banshee.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Banshee.vcxproj -------------------------------------------------------------------------------- /Banshee/Banshee.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Banshee.vcxproj.filters -------------------------------------------------------------------------------- /Banshee/Banshee.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Banshee.vcxproj.user -------------------------------------------------------------------------------- /Banshee/CallbackUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/CallbackUtils.cpp -------------------------------------------------------------------------------- /Banshee/CallbackUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/CallbackUtils.hpp -------------------------------------------------------------------------------- /Banshee/Commands.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Commands.cpp -------------------------------------------------------------------------------- /Banshee/Commands.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Commands.hpp -------------------------------------------------------------------------------- /Banshee/Debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Debug.hpp -------------------------------------------------------------------------------- /Banshee/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Driver.cpp -------------------------------------------------------------------------------- /Banshee/DriverMeta.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/DriverMeta.hpp -------------------------------------------------------------------------------- /Banshee/FileUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/FileUtils.cpp -------------------------------------------------------------------------------- /Banshee/FileUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/FileUtils.hpp -------------------------------------------------------------------------------- /Banshee/Globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Globals.cpp -------------------------------------------------------------------------------- /Banshee/Globals.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Globals.hpp -------------------------------------------------------------------------------- /Banshee/Injection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Injection.cpp -------------------------------------------------------------------------------- /Banshee/Injection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Injection.hpp -------------------------------------------------------------------------------- /Banshee/Keylogger.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Keylogger.cpp -------------------------------------------------------------------------------- /Banshee/Keylogger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Keylogger.hpp -------------------------------------------------------------------------------- /Banshee/MIsc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/MIsc.cpp -------------------------------------------------------------------------------- /Banshee/MemoryUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/MemoryUtils.cpp -------------------------------------------------------------------------------- /Banshee/MemoryUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/MemoryUtils.hpp -------------------------------------------------------------------------------- /Banshee/Misc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Misc.hpp -------------------------------------------------------------------------------- /Banshee/ProcessUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/ProcessUtils.cpp -------------------------------------------------------------------------------- /Banshee/ProcessUtils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/ProcessUtils.hpp -------------------------------------------------------------------------------- /Banshee/VK.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/VK.hpp -------------------------------------------------------------------------------- /Banshee/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Vector.cpp -------------------------------------------------------------------------------- /Banshee/Vector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/Vector.hpp -------------------------------------------------------------------------------- /Banshee/WinTypes.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/Banshee/WinTypes.hpp -------------------------------------------------------------------------------- /BansheeClient/Banshee.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/BansheeClient/Banshee.hpp -------------------------------------------------------------------------------- /BansheeClient/BansheeClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/BansheeClient/BansheeClient.cpp -------------------------------------------------------------------------------- /BansheeClient/BansheeClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/BansheeClient/BansheeClient.vcxproj -------------------------------------------------------------------------------- /BansheeClient/BansheeClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/BansheeClient/BansheeClient.vcxproj.filters -------------------------------------------------------------------------------- /BansheeClient/BansheeClient.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/BansheeClient/BansheeClient.vcxproj.user -------------------------------------------------------------------------------- /BansheeClient/Logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/BansheeClient/Logger.hpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/README.md -------------------------------------------------------------------------------- /img/Banshee.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/img/Banshee.jpg -------------------------------------------------------------------------------- /img/CLI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/img/CLI.png -------------------------------------------------------------------------------- /img/Callbacks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/img/Callbacks.png -------------------------------------------------------------------------------- /img/EPROCESS_ProcessLinksLock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/img/EPROCESS_ProcessLinksLock.png -------------------------------------------------------------------------------- /img/EPROCESS_Protection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eversinc33/Banshee/HEAD/img/EPROCESS_Protection.png --------------------------------------------------------------------------------