Processory 1.24.250106.1311

dotnet add package Processory --version 1.24.250106.1311
                    
NuGet\Install-Package Processory -Version 1.24.250106.1311
                    
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="Processory" Version="1.24.250106.1311" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Processory" Version="1.24.250106.1311" />
                    
Directory.Packages.props
<PackageReference Include="Processory" />
                    
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 Processory --version 1.24.250106.1311
                    
#r "nuget: Processory, 1.24.250106.1311"
                    
#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 Processory@1.24.250106.1311
                    
#: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=Processory&version=1.24.250106.1311
                    
Install as a Cake Addin
#tool nuget:?package=Processory&version=1.24.250106.1311
                    
Install as a Cake Tool

Processory

Description

Processory is a .NET library designed to facilitate interaction with processes and memory management on Windows systems. It provides functionalities for reading process memory, managing CSV data offsets, and interacting with the system through pointer chains and memory reads. This library aims to simplify the process of accessing information from running processes by providing a set of tools that can be easily integrated into applications.

Usage/Getting Started

To get started with Processory, follow these steps:

  1. Install the Library: You can install the Processory package via NuGet Package Manager Console using the following command:

    Install-Package Processory
    

    or by using the following command in the.NET CLI:

    dotnet add package Processory
    
  2. Create a ProcessoryClient Instance: Initialize the ProcessoryClient class with the name of the process you want to interact with. For example:

    var processory = new ProcessoryClient("process_name");
    
  3. Read Memory: Use the MemoryReader class to read memory from the target process. Here's a basic example of reading an integer value at a specific offset:

    var baseAddress = processory.ProcessService.ProcessHandle?.MainModule?.BaseAddress;
    if (baseAddress == null) {
        Console.WriteLine("Could not find process");
        return;
    }
    var screenClient = (ulong)(baseAddress + 0x4C7FF08);
    var deferAdd = processory.PointerChainFollower.DereferencePointer(screenClient);
    var screenClientValue = processory.MemoryReader.Read<uint>(deferAdd);
    Console.WriteLine("Screen client: {0:X}", screenClient);
    Console.WriteLine("Screen client value: {0}", screenClientValue);
    

FAQ

Q1: How do I handle exceptions in Processory?

A1: Exceptions can be handled using standard C# try-catch blocks. For example:

try {
    var processory = new ProcessoryClient("process_name");
} catch (Exception ex) {
    Console.WriteLine($"An error occurred: {ex.Message}");
}

Q2: Can I read memory from a 64-bit application?

A2: Yes, Processory supports reading memory from both 32-bit and 64-bit applications. The library dynamically adjusts its operations based on the architecture of the target process.

Resources

For additional resources and support, you can visit the following links:

  • GitHub Repository: Processory GitHub
  • Documentation: Comprehensive documentation is available in the repository's Wiki section.

Configuration

The library does not require extensive configuration. However, ensure that you have the necessary permissions to read memory from the target process. You may need to run your application with elevated privileges if access is restricted.

Features

  • Memory Reading: Read raw bytes and structured data from a running process's memory.
  • Pointer Chaining: Follow complex pointer chains to retrieve values at specific addresses.
  • CSV Data Management: Manage csv files for storing and retrieving offsets used in pointer chaining.
  • Process Interaction: Open, read, and close processes safely using Windows API functions.

Topics

  • Memory Security: Be mindful of the security implications when accessing memory from other processes.
  • Performance Considerations: Reading large amounts of data may impact performance; consider optimizing your access patterns.

Considerations

  • Legal and Ethical Use: Ensure that you have permission to use Processory on any target machine, especially if it is not your own. Unauthorized monitoring can be illegal.
  • Error Handling: Implement robust error handling in your application to manage unexpected issues gracefully.
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  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.  net9.0 was computed.  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.

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.24.250106.1311 110 1/6/2025
1.19.241210.1855 110 12/10/2024
1.15.241004.2022 138 10/4/2024
1.14.241002.1904 116 10/2/2024
1.13.240929.1134 122 9/29/2024
1.0.0 122 9/29/2024