├── .gitignore ├── DMALibrary.sln ├── DMALibrary ├── DMALibrary.cpp ├── DMALibrary.vcxproj ├── DMALibrary.vcxproj.filters ├── DMALibrary.vcxproj.user ├── Memory │ ├── InputManager.cpp │ ├── InputManager.h │ ├── Memory.cpp │ ├── Memory.h │ ├── Registry.cpp │ ├── Registry.h │ ├── Shellcode.cpp │ └── Shellcode.h ├── framework.h ├── info.db ├── libs │ ├── info.db │ ├── leechcore.h │ └── vmmdll.h ├── nt │ └── structs.h ├── pch.cpp └── pch.h ├── Example ├── Example.cpp ├── Example.vcxproj ├── Example.vcxproj.filters ├── Example.vcxproj.user └── info.db ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/.gitignore -------------------------------------------------------------------------------- /DMALibrary.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary.sln -------------------------------------------------------------------------------- /DMALibrary/DMALibrary.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/DMALibrary.cpp -------------------------------------------------------------------------------- /DMALibrary/DMALibrary.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/DMALibrary.vcxproj -------------------------------------------------------------------------------- /DMALibrary/DMALibrary.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/DMALibrary.vcxproj.filters -------------------------------------------------------------------------------- /DMALibrary/DMALibrary.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/DMALibrary.vcxproj.user -------------------------------------------------------------------------------- /DMALibrary/Memory/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/InputManager.cpp -------------------------------------------------------------------------------- /DMALibrary/Memory/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/InputManager.h -------------------------------------------------------------------------------- /DMALibrary/Memory/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/Memory.cpp -------------------------------------------------------------------------------- /DMALibrary/Memory/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/Memory.h -------------------------------------------------------------------------------- /DMALibrary/Memory/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/Registry.cpp -------------------------------------------------------------------------------- /DMALibrary/Memory/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/Registry.h -------------------------------------------------------------------------------- /DMALibrary/Memory/Shellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/Shellcode.cpp -------------------------------------------------------------------------------- /DMALibrary/Memory/Shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/Memory/Shellcode.h -------------------------------------------------------------------------------- /DMALibrary/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/framework.h -------------------------------------------------------------------------------- /DMALibrary/info.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/info.db -------------------------------------------------------------------------------- /DMALibrary/libs/info.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/libs/info.db -------------------------------------------------------------------------------- /DMALibrary/libs/leechcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/libs/leechcore.h -------------------------------------------------------------------------------- /DMALibrary/libs/vmmdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/libs/vmmdll.h -------------------------------------------------------------------------------- /DMALibrary/nt/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/nt/structs.h -------------------------------------------------------------------------------- /DMALibrary/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/pch.cpp -------------------------------------------------------------------------------- /DMALibrary/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/DMALibrary/pch.h -------------------------------------------------------------------------------- /Example/Example.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/Example/Example.cpp -------------------------------------------------------------------------------- /Example/Example.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/Example/Example.vcxproj -------------------------------------------------------------------------------- /Example/Example.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/Example/Example.vcxproj.filters -------------------------------------------------------------------------------- /Example/Example.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/Example/Example.vcxproj.user -------------------------------------------------------------------------------- /Example/info.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/Example/info.db -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Metick/DMALibrary/HEAD/README.md --------------------------------------------------------------------------------