9xMemory 1.0.0

dotnet add package 9xMemory --version 1.0.0
                    
NuGet\Install-Package 9xMemory -Version 1.0.0
                    
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="9xMemory" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="9xMemory" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="9xMemory" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add 9xMemory --version 1.0.0
                    
#r "nuget: 9xMemory, 1.0.0"
                    
#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.
#:package 9xMemory@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=9xMemory&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=9xMemory&version=1.0.0
                    
Install as a Cake Tool

🧠 MemoryScanner Class – C# External AoB Scanner & Memory Patcher

The MemoryScanner class provides a powerful set of low-level tools for scanning and modifying the memory of external Windows processes. Designed for developers, reverse engineers, and game modders, this class enables you to:

Features:
  • Open target process with PROCESS_ALL_ACCESS permissions.
  • Scan memory regions using VirtualQueryEx to find readable/writable memory.
  • Read process memory using ReadProcessMemory.
  • AoB (Array of Bytes) pattern scanning with optional wildcard support (??) for flexible searches.
  • Multiple match support – scans and returns all matching addresses across all committed memory regions.
  • Patch memory at specific addresses with custom byte arrays using WriteProcessMemory.
  • Convert string AoB patterns into byte arrays (with optional wildcard handling via 0xCC or masks).
🛠️ Use Cases:
  • Game hacking (external cheat development).
  • Debugging or reverse engineering applications.
  • Memory value tracking and automation.
  • Real-time binary patching.
🚧 Notes:
  • Memory protection filtering currently targets PAGE_READWRITE regions, but can be extended.
  • Wildcards are currently represented with 0xCC — consider using a separate boolean mask for full control.
  • Does not automatically close process handles — CloseHandle should be added for cleanup.
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • net9.0

    • 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.

Version Downloads Last Updated
1.0.0 358 6/12/2025