LinuxProcessVMWrapper 1.0.3

dotnet add package LinuxProcessVMWrapper --version 1.0.3
NuGet\Install-Package LinuxProcessVMWrapper -Version 1.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="LinuxProcessVMWrapper" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add LinuxProcessVMWrapper --version 1.0.3
#r "nuget: LinuxProcessVMWrapper, 1.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 LinuxProcessVMWrapper as a Cake Addin
#addin nuget:?package=LinuxProcessVMWrapper&version=1.0.3

// Install LinuxProcessVMWrapper as a Cake Tool
#tool nuget:?package=LinuxProcessVMWrapper&version=1.0.3

About

This is a C# based package for reading and writing to the memory of an external process on modern Linux based systems. This package provides a set of functions which wrap around the process_vm_readv and process_vm_writev system calls. These functions are provided as extension methods to the System.Diagnostics.Process class.

Examples

Reading

var process = Process.GetCurrentProcess();
int firstBaseValue = process.Read<int>(process.MainModule.BaseAddress);

Writing

var process = Process.GetCurrentProcess();
int obj = new int();
GCHandle handle = GCHandle.Alloc(obj, GCHandleType.Weak);
try
{
    // Get a pointer to the int object we allocated in this process.
    IntPtr pointer = GCHandle.ToIntPtr(handle);

    // Write the value 7 to the address the pointer points to.
    process.Write<int>(pointer, 7);

    // Read the address the pointer points to and ensure it's 7.
    Assert.AreEqual(7, process.Read<int>(pointer));
}
finally
{
    handle.Free();
}       
Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net6.0

    • No dependencies.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on LinuxProcessVMWrapper:

Package Downloads
MemoryLick

A NuGet package for reading and writing memory from other processes.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 429 5/25/2022
1.0.2 637 3/14/2022
1.0.1 844 3/13/2022
1.0.0 3,273 3/13/2022