Skip to content

ImmuneLion318/Memory.Net

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

📦 Memory.Net

Memory.Net - .Net C# Memory Manipulation & Exploitation Library, With Features Such As Pattern Scanning, Memory Basic Manipulation, Disassembly, Thread & Module Manipulation And Much More.

Memory.Net - Development Progress

Published Library Completion
✔️ Memory img
Module img
Thread img
✔️ Pattern img
Disassembly img
Assembly img

Memory.Net - Documentation

using Memory.Net;
using Memory.Net.Interop; 

/* Note : Memory.Net Implements IDisposable. */

/* #1. Constructor */
Memory MemoryNet = new Memory()
{
	Name = "Process Name",
	Architecture = Architecture.x86 /* x86 Or x64 Or Auto */,
};

/* At The End Of Operations Ensure The Disposal Of Memory There Are 2 Ways As Shown Below. */
MemoryNet.Dispose();

/* Or You Could Use A Using Statement Which Auto Disposes. */
using (Memory MemoryNet = new Memory()
{
	Name = "Process Name";
	Architecture = Architecture.x86;
})
{

};

Using The Instance Created You Can Proceed To Call And Use Memory.Net's Functions To The Fullest Extent Some Examples Are Shown Below

About

Memory.Net Comprehensive And Extensive C# Memory Library For Manipulation And Exploitation Of Memory.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages