Memory.Net
0.0.0.3
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Memory.Net --version 0.0.0.3
NuGet\Install-Package Memory.Net -Version 0.0.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Memory.Net" Version="0.0.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Memory.Net --version 0.0.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Memory.Net, 0.0.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Memory.Net as a Cake Addin #addin nuget:?package=Memory.Net&version=0.0.0.3 // Install Memory.Net as a Cake Tool #tool nuget:?package=Memory.Net&version=0.0.0.3
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
📦 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 - Documentation
using Memory.Net;
using Memory.Net.Type; /* For Premade Type Target, Module, Thread. */
/* Note : Memory.Net Implements IDisposable. */
/* Memory.Net Implements Multiple Directives To Creating An Instance And Using It
You Can Pass Parameters To The Constructor Or Set The Target In The Object Initializer
Both Of These Are Shown As Example Below. */
/* #1. Constructor */
MemoryFactory Memory = new MemoryFactory("Application");
/* Keep In Mind MemoryFactor's Constructor Has Multiple Overloads For Process,
Process Id, Process Name, And The Target Premade Type. */
/* #2 Object Initializer */
Target Victim = new Target(000).Open(); /* 000 = Process Id */
MemoryFactory Memory = new MemoryFactory
{
Target = Victim
};
/* At The End Of Operations Ensure The Disposal Of MemoryFactory. */
Using The Instance Created You Can Proceed To Call And Use Memory.Net's Functions To The Fullest Extent Some Examples Are Shown Below
Target Victim = new Target(000).Open(); /* 000 = Process Id */
MemoryFactory Memory = new MemoryFactory
{
Target = Victim
};
IntPtr Allocation = Memory.Allocate(1024) /* Allocate 1 Megabyte */
bool Out = Memory.Write(Allocation, "Hello World, From Memory.Net");
if (Out != true)
throw new Exception("Failed To Write To Memory");
string Data = Memory.Read<string>(Allocation, 1024);
/* Should Contain "Hello World, From Memory.Net" */
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net48 is compatible. net481 was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
.NETFramework 4.8
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.
Scan Byte And Signature Implementation Expects A Byte Array In String Form Or Byte Array.