├── .gitattributes ├── .gitignore ├── Cod4 DMA.sln ├── Cod4DMA ├── Aimbot │ ├── Aimbot.cpp │ └── Aimbot.h ├── Cod4DMA.filters ├── Cod4DMA.vcxproj ├── Config │ ├── AimbotConfig.h │ ├── ConfigInstance.h │ ├── ConfigUtilities.cpp │ ├── ConfigUtilities.h │ ├── OverlayConfig.h │ └── PlayerConfig.h ├── Esp │ ├── PlayerEsp.cpp │ └── PlayerEsp.h ├── Globals.h ├── Graphics │ ├── Drawing.cpp │ ├── Drawing.h │ ├── Entities │ │ ├── Button.cpp │ │ ├── Button.h │ │ ├── ColourPicker.cpp │ │ ├── ColourPicker.h │ │ ├── ComboBox.cpp │ │ ├── ComboBox.h │ │ ├── DropDown.cpp │ │ ├── DropDown.h │ │ ├── Entity.cpp │ │ ├── Entity.h │ │ ├── Form.cpp │ │ ├── Form.h │ │ ├── KeyBind.cpp │ │ ├── KeyBind.h │ │ ├── Label.cpp │ │ ├── Label.h │ │ ├── Slider.h │ │ ├── Tab.cpp │ │ ├── Tab.h │ │ ├── TabController.cpp │ │ ├── TabController.h │ │ ├── TabListBox.cpp │ │ ├── TabListBox.h │ │ ├── TabListBoxController.cpp │ │ ├── TabListBoxController.h │ │ ├── TextBox.cpp │ │ ├── TextBox.h │ │ ├── Toggle.cpp │ │ └── Toggle.h │ ├── Graphics.h │ ├── Start Up │ │ ├── GUI.cpp │ │ ├── GUI.h │ │ ├── Init.cpp │ │ └── Init.h │ └── Utility │ │ ├── Animation.cpp │ │ ├── Animation.h │ │ ├── Colour.cpp │ │ ├── Colour.h │ │ ├── Font.cpp │ │ ├── Font.h │ │ ├── Kmbox.cpp │ │ └── Kmbox.h ├── Main.cpp ├── Memory │ ├── InputManager.cpp │ ├── InputManager.h │ ├── Memory.cpp │ ├── Memory.h │ ├── Registry.cpp │ └── Registry.h ├── Misc │ ├── CheatFunction.cpp │ ├── CheatFunction.h │ ├── Input.cpp │ ├── Input.h │ ├── Pch │ │ ├── Pch.cpp │ │ └── Pch.h │ ├── Vector.cpp │ └── Vector.h ├── SDK │ ├── Game.cpp │ ├── Game.h │ ├── LocalPlayer.cpp │ ├── LocalPlayer.h │ ├── Player.cpp │ └── Player.h └── Security │ └── XorStr.h ├── Images ├── 1.png ├── 2.png └── 3.png ├── Include ├── json.hpp ├── leechcore.h └── vmmdll.h ├── Instructions.md ├── LICENSE ├── Lib ├── FTD3XX.lib ├── leechcore.lib └── vmm.lib └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/.gitignore -------------------------------------------------------------------------------- /Cod4 DMA.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4 DMA.sln -------------------------------------------------------------------------------- /Cod4DMA/Aimbot/Aimbot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Aimbot/Aimbot.cpp -------------------------------------------------------------------------------- /Cod4DMA/Aimbot/Aimbot.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | void Aimbot(); -------------------------------------------------------------------------------- /Cod4DMA/Cod4DMA.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Cod4DMA.filters -------------------------------------------------------------------------------- /Cod4DMA/Cod4DMA.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Cod4DMA.vcxproj -------------------------------------------------------------------------------- /Cod4DMA/Config/AimbotConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Config/AimbotConfig.h -------------------------------------------------------------------------------- /Cod4DMA/Config/ConfigInstance.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Config/ConfigInstance.h -------------------------------------------------------------------------------- /Cod4DMA/Config/ConfigUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Config/ConfigUtilities.cpp -------------------------------------------------------------------------------- /Cod4DMA/Config/ConfigUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Config/ConfigUtilities.h -------------------------------------------------------------------------------- /Cod4DMA/Config/OverlayConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Config/OverlayConfig.h -------------------------------------------------------------------------------- /Cod4DMA/Config/PlayerConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Config/PlayerConfig.h -------------------------------------------------------------------------------- /Cod4DMA/Esp/PlayerEsp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Esp/PlayerEsp.cpp -------------------------------------------------------------------------------- /Cod4DMA/Esp/PlayerEsp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Esp/PlayerEsp.h -------------------------------------------------------------------------------- /Cod4DMA/Globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Globals.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Drawing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Drawing.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Drawing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Drawing.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Button.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Button.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/ColourPicker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/ColourPicker.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/ColourPicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/ColourPicker.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/ComboBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/ComboBox.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/ComboBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/ComboBox.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/DropDown.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/DropDown.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/DropDown.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/DropDown.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Entity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Entity.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Entity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Entity.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Form.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Form.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Form.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Form.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/KeyBind.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/KeyBind.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/KeyBind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/KeyBind.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Label.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Label.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Label.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Label.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Slider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Slider.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Tab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Tab.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Tab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Tab.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TabController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TabController.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TabController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TabController.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TabListBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TabListBox.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TabListBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TabListBox.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TabListBoxController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TabListBoxController.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TabListBoxController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TabListBoxController.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TextBox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TextBox.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/TextBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/TextBox.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Toggle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Toggle.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Entities/Toggle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Entities/Toggle.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Graphics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Graphics.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Start Up/GUI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Start Up/GUI.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Start Up/GUI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Start Up/GUI.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Start Up/Init.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Start Up/Init.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Start Up/Init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Start Up/Init.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Animation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Animation.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Animation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Animation.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Colour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Colour.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Colour.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Colour.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Font.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Font.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Font.h -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Kmbox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Kmbox.cpp -------------------------------------------------------------------------------- /Cod4DMA/Graphics/Utility/Kmbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Graphics/Utility/Kmbox.h -------------------------------------------------------------------------------- /Cod4DMA/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Main.cpp -------------------------------------------------------------------------------- /Cod4DMA/Memory/InputManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Memory/InputManager.cpp -------------------------------------------------------------------------------- /Cod4DMA/Memory/InputManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Memory/InputManager.h -------------------------------------------------------------------------------- /Cod4DMA/Memory/Memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Memory/Memory.cpp -------------------------------------------------------------------------------- /Cod4DMA/Memory/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Memory/Memory.h -------------------------------------------------------------------------------- /Cod4DMA/Memory/Registry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Memory/Registry.cpp -------------------------------------------------------------------------------- /Cod4DMA/Memory/Registry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Memory/Registry.h -------------------------------------------------------------------------------- /Cod4DMA/Misc/CheatFunction.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Misc/CheatFunction.cpp -------------------------------------------------------------------------------- /Cod4DMA/Misc/CheatFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Misc/CheatFunction.h -------------------------------------------------------------------------------- /Cod4DMA/Misc/Input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Misc/Input.cpp -------------------------------------------------------------------------------- /Cod4DMA/Misc/Input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Misc/Input.h -------------------------------------------------------------------------------- /Cod4DMA/Misc/Pch/Pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /Cod4DMA/Misc/Pch/Pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Misc/Pch/Pch.h -------------------------------------------------------------------------------- /Cod4DMA/Misc/Vector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Misc/Vector.cpp -------------------------------------------------------------------------------- /Cod4DMA/Misc/Vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Misc/Vector.h -------------------------------------------------------------------------------- /Cod4DMA/SDK/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/SDK/Game.cpp -------------------------------------------------------------------------------- /Cod4DMA/SDK/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/SDK/Game.h -------------------------------------------------------------------------------- /Cod4DMA/SDK/LocalPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/SDK/LocalPlayer.cpp -------------------------------------------------------------------------------- /Cod4DMA/SDK/LocalPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/SDK/LocalPlayer.h -------------------------------------------------------------------------------- /Cod4DMA/SDK/Player.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/SDK/Player.cpp -------------------------------------------------------------------------------- /Cod4DMA/SDK/Player.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/SDK/Player.h -------------------------------------------------------------------------------- /Cod4DMA/Security/XorStr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Cod4DMA/Security/XorStr.h -------------------------------------------------------------------------------- /Images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Images/1.png -------------------------------------------------------------------------------- /Images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Images/2.png -------------------------------------------------------------------------------- /Images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Images/3.png -------------------------------------------------------------------------------- /Include/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Include/json.hpp -------------------------------------------------------------------------------- /Include/leechcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Include/leechcore.h -------------------------------------------------------------------------------- /Include/vmmdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Include/vmmdll.h -------------------------------------------------------------------------------- /Instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Instructions.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/LICENSE -------------------------------------------------------------------------------- /Lib/FTD3XX.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Lib/FTD3XX.lib -------------------------------------------------------------------------------- /Lib/leechcore.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Lib/leechcore.lib -------------------------------------------------------------------------------- /Lib/vmm.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/Lib/vmm.lib -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IntelSDM/Cod4DMA/HEAD/README.md --------------------------------------------------------------------------------