Memory.Net
0.0.0.1
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.1
NuGet\Install-Package Memory.Net -Version 0.0.0.1
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.1" />
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.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Memory.Net, 0.0.0.1"
#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.1 // Install Memory.Net as a Cake Tool #tool nuget:?package=Memory.Net&version=0.0.0.1
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
📦 Memory.Net
Memory.Net - .Net Memory Manipulation And Exploitation Library.
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;
/* Error For Non Nullable Constructor Read Below Text. */
Memory Library = new Memory();
/*
Constrcutor Has 4 Overloads And Must Not Be Null
These Overloads Include The Following Types : Proc (Process), Name (string), Id (int) Or The Prewritten Custom Type (Target) This Type Can Be Made By Creating An Instance Of It And Passing It A Process Id, Correct Usage Would Be As Follows
*/
Memory Library = new Memory(100); /* Process Id */
Memory Library = new Memory("Application"); /* Process Name */
Process Proc = Process.GetProcessById(100); /* Or Get By Name */
Memory Library = new Memory(Proc);
Target Victim = new Target(100) /* Process Id */
Memory Library = new Memory(Victim);
Following This You Are On Your Way To Using Memory.Net For Method Just Call A Method From The Created Instance, Keep In Mind Memory.Net Memory Class Implement's IDisposable So It Needs To Be Disposed At The End.
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.
Initial Updates.