Skip to content

A Basic Memory Utility DLL for external, internal, and kernel level execution

Notifications You must be signed in to change notification settings

Thorioum/Asgard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Basic Memory Utility DLL for external, internal, and kernel level execution


Usage

External and Internal Usage

Functions for internal and external usage are defined in the Memory namespace, with functions specifically made for external usage end in Ex A dll can be very simply injected with the Memory::simpleInject() function

Note: if your injected dll depends on asgard, a way to make it work is to inject asgard into the target application, then inject your own dll.

Driver Usage

The loadDriver function of the KernelMemory attempts to run an instance of kdmapper in the same directory,
to correctly use this capability, place the asgard.sys, kdmapper.exe, and the executable calling loadDriver all in the same directory.
After the driver is mapped into memory, you can then call the KernelMemory functions to interact with it.

Note: Any Error caused in the kernel will result in a full computer crash
The Driver is not very well tested on a wide variety of OS. The Driver has been tested and confirmed to work on a Microsoft Windows 11 development environment, Version 2310: https://developer.microsoft.com/en-us/windows/downloads/virtual-machines/

Linking your project to Asgard in Visual Studio:

  • Project Configuration -> General -> C++ Language Standard -> ISO C++20 Standard (/std:c++20)
  • Project Configuration -> Advanced -> Character Set -> Not Set
  • Project Configuration -> Linker -> Input -> Additional Dependencies -> Asgard.lib;
  • Project Configuration -> Linker -> General -> Additional Library Directories -> (path to Asgard.lib)
  • Project Configuration -> C++ -> General -> Additional Include Directories -> (path to the Asgard header Files)

About

A Basic Memory Utility DLL for external, internal, and kernel level execution

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published